diff options
| author | Phillip Rulon | 1999-10-09 00:50:15 +0000 |
|---|---|---|
| committer | Phillip Rulon | 1999-10-09 00:50:15 +0000 |
| commit | b988a8423794343934818067ceb955a88c008fbd (patch) | |
| tree | 4b096a07ac42b808e6d19eed15547f56e51309a0 /src | |
| parent | 27271329116f3407e44a532c4701a7cc4416cbd4 (diff) | |
| download | emacs-b988a8423794343934818067ceb955a88c008fbd.tar.gz emacs-b988a8423794343934818067ceb955a88c008fbd.zip | |
(get_local_map): Use indirect_function,
not Findirect_function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 2063 | /* Use the local map only if it is valid. */ | 2063 | /* Use the local map only if it is valid. */ |
| 2064 | /* Do allow symbols that are defined as keymaps. */ | 2064 | /* Do allow symbols that are defined as keymaps. */ |
| 2065 | if (SYMBOLP (prop) && !NILP (prop)) | 2065 | if (SYMBOLP (prop) && !NILP (prop)) |
| 2066 | prop = Findirect_function (prop); | 2066 | prop = indirect_function (prop); |
| 2067 | if (!NILP (prop) | 2067 | if (!NILP (prop) |
| 2068 | && (tem = Fkeymapp (prop), !NILP (tem))) | 2068 | && (tem = Fkeymapp (prop), !NILP (tem))) |
| 2069 | return prop; | 2069 | return prop; |