diff options
| author | Stefan Monnier | 2008-06-05 05:44:12 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-06-05 05:44:12 +0000 |
| commit | 8ba31f366fc04228330e55c9ae48f2a6ba73760f (patch) | |
| tree | 88ff83169a0c5977911825316cba6cdd10529e22 /src/keymap.c | |
| parent | 6b1f69f1af2b8483b9c59518b40c8e47dc4b9996 (diff) | |
| download | emacs-8ba31f366fc04228330e55c9ae48f2a6ba73760f.tar.gz emacs-8ba31f366fc04228330e55c9ae48f2a6ba73760f.zip | |
* keymap.c (Vminibuffer_local_filename_must_match_map):
Rename from Vminibuffer_local_must_match_filename_map.
(syms_of_keymap):
* minibuf.c (Fcompleting_read): Adjust accordingly.
* commands.h: Rename declaration as well.
* minibuffer.el (minibuffer-local-must-match-filename-map):
Declare obsolete alias for the old name.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/keymap.c b/src/keymap.c index e11c7b97637..7a9b5949151 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -74,7 +74,7 @@ Lisp_Object Vminibuffer_local_filename_completion_map; | |||
| 74 | 74 | ||
| 75 | /* keymap used for minibuffers when doing completion in filenames | 75 | /* keymap used for minibuffers when doing completion in filenames |
| 76 | with require-match*/ | 76 | with require-match*/ |
| 77 | Lisp_Object Vminibuffer_local_must_match_filename_map; | 77 | Lisp_Object Vminibuffer_local_filename_must_match_map; |
| 78 | 78 | ||
| 79 | /* keymap used for minibuffers when doing completion and require a match */ | 79 | /* keymap used for minibuffers when doing completion and require a match */ |
| 80 | /* was MinibufLocalMustMatchMap */ | 80 | /* was MinibufLocalMustMatchMap */ |
| @@ -3936,11 +3936,11 @@ don't alter it yourself. */); | |||
| 3936 | Fset_keymap_parent (Vminibuffer_local_must_match_map, | 3936 | Fset_keymap_parent (Vminibuffer_local_must_match_map, |
| 3937 | Vminibuffer_local_completion_map); | 3937 | Vminibuffer_local_completion_map); |
| 3938 | 3938 | ||
| 3939 | DEFVAR_LISP ("minibuffer-local-must-match-filename-map", | 3939 | DEFVAR_LISP ("minibuffer-local-filename-must-match-map", |
| 3940 | &Vminibuffer_local_must_match_filename_map, | 3940 | &Vminibuffer_local_filename_must_match_map, |
| 3941 | doc: /* Local keymap for minibuffer input with completion for filenames with exact match. */); | 3941 | doc: /* Local keymap for minibuffer input with completion for filenames with exact match. */); |
| 3942 | Vminibuffer_local_must_match_filename_map = Fmake_sparse_keymap (Qnil); | 3942 | Vminibuffer_local_filename_must_match_map = Fmake_sparse_keymap (Qnil); |
| 3943 | Fset_keymap_parent (Vminibuffer_local_must_match_filename_map, | 3943 | Fset_keymap_parent (Vminibuffer_local_filename_must_match_map, |
| 3944 | Vminibuffer_local_must_match_map); | 3944 | Vminibuffer_local_must_match_map); |
| 3945 | 3945 | ||
| 3946 | DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, | 3946 | DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, |