diff options
| author | Stefan Monnier | 2009-09-11 02:14:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-09-11 02:14:05 +0000 |
| commit | 66d77eda77b4a92e0e1f9782e895ab0d98ba59bc (patch) | |
| tree | 7163cc2de40e27a59ba11ce505299b1b0e77a9a2 /src/keymap.c | |
| parent | 5238a7490e364b7a1392cf22d8ac3c3f833fce29 (diff) | |
| download | emacs-66d77eda77b4a92e0e1f9782e895ab0d98ba59bc.tar.gz emacs-66d77eda77b4a92e0e1f9782e895ab0d98ba59bc.zip | |
(get_keymap): Return the actual keymap symbol rather than t for autoloaded
keymaps when autoloading is not allowed (bug#4393).
Diffstat (limited to 'src/keymap.c')
| -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 7f539fd57b5..561b3453967 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -292,7 +292,7 @@ get_keymap (object, error, autoload) | |||
| 292 | goto autoload_retry; | 292 | goto autoload_retry; |
| 293 | } | 293 | } |
| 294 | else | 294 | else |
| 295 | return Qt; | 295 | return object; |
| 296 | } | 296 | } |
| 297 | } | 297 | } |
| 298 | } | 298 | } |