mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-06 05:52:32 -08:00
(Fcompleting_read): Rename arg INIT to INITIAL_INPUT.
This commit is contained in:
parent
71a927516a
commit
d43f85c277
1 changed files with 5 additions and 3 deletions
|
|
@ -1444,15 +1444,17 @@ Completion ignores case if the ambient value of\n\
|
|||
*/
|
||||
DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0,
|
||||
0 /* See immediately above */)
|
||||
(prompt, table, predicate, require_match, init, hist, def, inherit_input_method)
|
||||
Lisp_Object prompt, table, predicate, require_match, init, hist, def;
|
||||
Lisp_Object inherit_input_method;
|
||||
(prompt, table, predicate, require_match, initial_input, hist, def, inherit_input_method)
|
||||
Lisp_Object prompt, table, predicate, require_match, initial_input;
|
||||
Lisp_Object hist, def, inherit_input_method;
|
||||
{
|
||||
Lisp_Object val, histvar, histpos, position;
|
||||
Lisp_Object init;
|
||||
int pos = 0;
|
||||
int count = specpdl_ptr - specpdl;
|
||||
struct gcpro gcpro1;
|
||||
|
||||
init = initial_input;
|
||||
GCPRO1 (def);
|
||||
|
||||
specbind (Qminibuffer_completion_table, table);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue