From df902b62cdaa3fcb75b0113de87a8fcf2b459ba7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 9 Aug 1998 21:56:16 +0000 Subject: [PATCH] (Fminibuffer_complete): this_command renamed to Vthis_command. --- src/minibuf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/minibuf.c b/src/minibuf.c index 3771af57043..1367820a09c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1540,9 +1540,9 @@ scroll the window of possible completions.") register int i; Lisp_Object window, tem; - /* If the previous command was not this, then mark the completion - buffer obsolete. */ - if (! EQ (current_kboard->Vlast_command, this_command)) + /* If the previous command was not this, + mark the completion buffer obsolete. */ + if (! EQ (current_kboard->Vlast_command, Vthis_command)) Vminibuf_scroll_window = Qnil; window = Vminibuf_scroll_window; -- 2.39.5