diff options
| author | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:41:07 +0000 | 
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1997-07-12 06:41:07 +0000 | 
| commit | b7df898e37821391884bdb3d33286d5d4152c7bc (patch) | |
| tree | 95595f94930bbd7578981ef287020457581a387c | |
| parent | 4da6dec802f79ca94a15c88239bdbf2fcc7f4887 (diff) | |
| download | emacs-b7df898e37821391884bdb3d33286d5d4152c7bc.tar.gz | |
(Fread_from_minibuffer): Remove extra get_keymap argument.
(Fminibuffer_complete): Convert Fset_window_start argument to Lisp_Integer.
| -rw-r--r-- | src/minibuf.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/minibuf.c b/src/minibuf.c index 4a2c805f170..31efe44c3a5 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -615,7 +615,7 @@ DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1,    if (NILP (keymap))      keymap = Vminibuffer_local_map;    else -    keymap = get_keymap (keymap,2); +    keymap = get_keymap (keymap);    if (SYMBOLP (hist))      { @@ -1373,7 +1373,7 @@ scroll the window of possible completions.")        tem = Fpos_visible_in_window_p (make_number (ZV), window);        if (! NILP (tem))  	/* If end is in view, scroll up to the beginning.  */ -	Fset_window_start (window, BEGV, Qnil); +	Fset_window_start (window, make_number (BEGV), Qnil);        else  	/* Else scroll down one screen.  */  	Fscroll_other_window (Qnil); | 
