changeset 26953:def8de0fb500

(Fcompleting_read): Rename arg INIT to INITIAL_INPUT.
author Richard M. Stallman <rms@gnu.org>
date Sun, 19 Dec 1999 19:13:08 +0000
parents 780a31708fcb
children e388d69f4269
files src/minibuf.c
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/minibuf.c	Sun Dec 19 16:14:37 1999 +0000
+++ b/src/minibuf.c	Sun Dec 19 19:13:08 1999 +0000
@@ -1444,15 +1444,17 @@
 */
 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);