From: Phillip Rulon Date: Sat, 9 Oct 1999 00:50:15 +0000 (+0000) Subject: (get_local_map): Use indirect_function, X-Git-Tag: emacs-pretest-21.0.90~6504 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b988a8423794343934818067ceb955a88c008fbd;p=emacs.git (get_local_map): Use indirect_function, not Findirect_function. --- diff --git a/src/intervals.c b/src/intervals.c index 6b9b817e8ab..ef4f54be834 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -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;