From b7df898e37821391884bdb3d33286d5d4152c7bc Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 1997 06:41:07 +0000 Subject: [PATCH] (Fread_from_minibuffer): Remove extra get_keymap argument. (Fminibuffer_complete): Convert Fset_window_start argument to Lisp_Integer. --- src/minibuf.c | 4 ++-- 1 file 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); -- 2.39.5