From 90385b3d8f35239d0515bb96ec20138f0db8ae70 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 2 Dec 2005 13:43:04 +0000 Subject: [PATCH] (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. --- src/commands.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/commands.h b/src/commands.h index 7ad593577ad..c1330af273e 100644 --- a/src/commands.h +++ b/src/commands.h @@ -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; -- 2.39.5