From: Richard M. Stallman Date: Sun, 9 Aug 1998 21:56:16 +0000 (+0000) Subject: (Fminibuffer_complete): this_command renamed to Vthis_command. X-Git-Tag: emacs-20.3~110 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=df902b62cdaa3fcb75b0113de87a8fcf2b459ba7;p=emacs.git (Fminibuffer_complete): this_command renamed to Vthis_command. --- 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;