Commit 2b08cc2d authored by Stefan Kangas's avatar Stefan Kangas
Browse files

; Fix typo

* java/org/gnu/emacs/EmacsSafThread.java
(cacheDirectoryFromCursor): Fix typo.
parent 059ae680
Pipeline #27521 failed with stages
in 116 minutes and 37 seconds
......@@ -504,7 +504,7 @@ second caches individual document IDs and their contents (children,
cacheDirectoryFromCursor (CacheToplevel toplevel, String documentId,
Cursor cursor)
{
CacheEntry entry, constitutent;
CacheEntry entry, constituent;
int nameColumn, idColumn, typeColumn;
String id, name, type;
DocIdEntry idEntry;
......@@ -561,8 +561,8 @@ second caches individual document IDs and their contents (children,
/* Otherwise, create a new cache entry comprised of its
type. */
constitutent = new CacheEntry ();
constitutent.type = type;
constituent = new CacheEntry ();
constituent.type = type;
toplevel.idCache.put (documentId, entry);
}
catch (Exception e)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment