mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
src/minibuf.c: Fix previous change.
* minibuf.c (Vcompleting_read_function): Don't declare, global variables are now in src/globals.h. (syms_of_minibuf): Remove spurious & from previous change.
This commit is contained in:
parent
3ec03f7e46
commit
45b6f6d5cb
@ -1,3 +1,9 @@
|
||||
2011-03-20 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* minibuf.c (Vcompleting_read_function): Don't declare, global variables
|
||||
are now in src/globals.h.
|
||||
(syms_of_minibuf): Remove spurious & from previous change.
|
||||
|
||||
2011-03-20 Leo <sdl.web@gmail.com>
|
||||
|
||||
* minibuf.c (completing-read-function): New variable.
|
||||
|
@ -73,7 +73,6 @@ Lisp_Object Qminibuffer_completion_table;
|
||||
Lisp_Object Qminibuffer_completion_predicate;
|
||||
Lisp_Object Qminibuffer_completion_confirm;
|
||||
Lisp_Object Qcompleting_read_default;
|
||||
Lisp_Object Vcompleting_read_function;
|
||||
Lisp_Object Quser_variable_p;
|
||||
|
||||
Lisp_Object Qminibuffer_default;
|
||||
@ -2142,7 +2141,7 @@ If the value is `confirm-after-completion', the user may exit with an
|
||||
Vminibuffer_completing_file_name = Qnil;
|
||||
|
||||
DEFVAR_LISP ("completing-read-function",
|
||||
&Vcompleting_read_function,
|
||||
Vcompleting_read_function,
|
||||
doc: /* The function called by `completing-read' to do the work.
|
||||
It should accept the same arguments as `completing-read'. */);
|
||||
Vcompleting_read_function = Qcompleting_read_default;
|
||||
|
Loading…
Reference in New Issue
Block a user