diff options
| author | Richard M. Stallman | 1999-12-19 19:13:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-12-19 19:13:08 +0000 |
| commit | d43f85c277b14cbdf60578f505d243bca64d9225 (patch) | |
| tree | a37b6b577707d56c665899953cca18f7fc900910 /src | |
| parent | 71a927516a157869905d910b4afa33b0afbbb754 (diff) | |
| download | emacs-d43f85c277b14cbdf60578f505d243bca64d9225.tar.gz emacs-d43f85c277b14cbdf60578f505d243bca64d9225.zip | |
(Fcompleting_read): Rename arg INIT to INITIAL_INPUT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index e5c97023b49..701006350e8 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1444,15 +1444,17 @@ Completion ignores case if the ambient value of\n\ | |||
| 1444 | */ | 1444 | */ |
| 1445 | DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, | 1445 | DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, |
| 1446 | 0 /* See immediately above */) | 1446 | 0 /* See immediately above */) |
| 1447 | (prompt, table, predicate, require_match, init, hist, def, inherit_input_method) | 1447 | (prompt, table, predicate, require_match, initial_input, hist, def, inherit_input_method) |
| 1448 | Lisp_Object prompt, table, predicate, require_match, init, hist, def; | 1448 | Lisp_Object prompt, table, predicate, require_match, initial_input; |
| 1449 | Lisp_Object inherit_input_method; | 1449 | Lisp_Object hist, def, inherit_input_method; |
| 1450 | { | 1450 | { |
| 1451 | Lisp_Object val, histvar, histpos, position; | 1451 | Lisp_Object val, histvar, histpos, position; |
| 1452 | Lisp_Object init; | ||
| 1452 | int pos = 0; | 1453 | int pos = 0; |
| 1453 | int count = specpdl_ptr - specpdl; | 1454 | int count = specpdl_ptr - specpdl; |
| 1454 | struct gcpro gcpro1; | 1455 | struct gcpro gcpro1; |
| 1455 | 1456 | ||
| 1457 | init = initial_input; | ||
| 1456 | GCPRO1 (def); | 1458 | GCPRO1 (def); |
| 1457 | 1459 | ||
| 1458 | specbind (Qminibuffer_completion_table, table); | 1460 | specbind (Qminibuffer_completion_table, table); |