]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typo
authorStefan Kangas <stefankangas@gmail.com>
Sat, 16 Dec 2023 23:14:43 +0000 (00:14 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 16 Dec 2023 23:14:56 +0000 (00:14 +0100)
* java/org/gnu/emacs/EmacsSafThread.java
(cacheDirectoryFromCursor): Fix typo.

java/org/gnu/emacs/EmacsSafThread.java

index 8bb84126b07ba53822f73bebe0b97ad03f417483..333c3a29790f3d2686f47254063c7b3feed13d54 100644 (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)