diff options
| author | Richard M. Stallman | 1993-05-13 00:20:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-13 00:20:51 +0000 |
| commit | 992984b287b0afd9b34e82ee824706c9fa559b0c (patch) | |
| tree | 67e5fb440718406a9a6b3a4e72724207d81ce6e1 /src | |
| parent | 68a37fa8c726ccf2745d226bd6346767c8ef108c (diff) | |
| download | emacs-992984b287b0afd9b34e82ee824706c9fa559b0c.tar.gz emacs-992984b287b0afd9b34e82ee824706c9fa559b0c.zip | |
(current_minor_maps): Call Findirect_function, so symbols
can be used in place of actual maps.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index 5c9daec24d4..345d65fe768 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -730,7 +730,7 @@ current_minor_maps (modeptr, mapptr) | |||
| 730 | break; | 730 | break; |
| 731 | } | 731 | } |
| 732 | cmm_modes[i] = var; | 732 | cmm_modes[i] = var; |
| 733 | cmm_maps [i] = XCONS (assoc)->cdr; | 733 | cmm_maps [i] = Findirect_function (XCONS (assoc)->cdr); |
| 734 | i++; | 734 | i++; |
| 735 | } | 735 | } |
| 736 | 736 | ||