mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 11:27:34 +00:00
(Vminibuffer_local_filename_completion_map): Declare a new keymap for
minibuffer completion in case of filenames. (Vminibuffer_local_must_match_filename_map): Declare a new keymap for minibuffer completion in case require-match is set.
This commit is contained in:
parent
eac5c1f628
commit
90385b3d8f
1 changed files with 7 additions and 0 deletions
|
|
@ -37,9 +37,16 @@ extern Lisp_Object Vminibuffer_local_ns_map;
|
|||
/* keymap used for minibuffers when doing completion */
|
||||
extern Lisp_Object Vminibuffer_local_completion_map;
|
||||
|
||||
/* keymap used for minibuffers when doing completion in filenames*/
|
||||
extern Lisp_Object Vminibuffer_local_filename_completion_map;
|
||||
|
||||
/* keymap used for minibuffers when doing completion and require a match */
|
||||
extern Lisp_Object Vminibuffer_local_must_match_map;
|
||||
|
||||
/* keymap used for minibuffers when doing completion in filenames
|
||||
and require a match */
|
||||
extern Lisp_Object Vminibuffer_local_must_match_filename_map;
|
||||
|
||||
/* Last character of last key sequence. */
|
||||
extern Lisp_Object last_command_char;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue