1
0
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:
Juanma Barranquero 2011-03-20 14:57:22 +01:00
parent 3ec03f7e46
commit 45b6f6d5cb
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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;