1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 06:50:46 -08:00

; Fix typo

* java/org/gnu/emacs/EmacsSafThread.java
(cacheDirectoryFromCursor): Fix typo.
This commit is contained in:
Stefan Kangas 2023-12-17 00:14:43 +01:00
parent 059ae68087
commit 2b08cc2d5f

View file

@ -504,7 +504,7 @@ public final class EmacsSafThread extends HandlerThread
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 @@ public final class EmacsSafThread extends HandlerThread
/* 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)