]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_local_map): Use indirect_function,
authorPhillip Rulon <pjr@gnu.org>
Sat, 9 Oct 1999 00:50:15 +0000 (00:50 +0000)
committerPhillip Rulon <pjr@gnu.org>
Sat, 9 Oct 1999 00:50:15 +0000 (00:50 +0000)
not Findirect_function.

src/intervals.c

index 6b9b817e8ab0450991b1d72885942d6713befe59..ef4f54be8345f5123eb61140e5f25c0e793dd60f 100644 (file)
@@ -2063,7 +2063,7 @@ get_local_map (position, buffer)
   /* Use the local map only if it is valid.  */
   /* Do allow symbols that are defined as keymaps.  */
   if (SYMBOLP (prop) && !NILP (prop))
-    prop = Findirect_function (prop);
+    prop = indirect_function (prop);
   if (!NILP (prop)
       && (tem = Fkeymapp (prop), !NILP (tem)))
     return prop;