summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-09 21:56:16 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-09 21:56:16 +0000
commit1df29c163742f1ee9de333cd4e678dfa9d472235 (patch)
treea1598058a96d912eb8ce2df2831df24f72dcaa1a
parent72aa77489749e73a5861988df678db67a29b2b65 (diff)
downloademacs-1df29c163742f1ee9de333cd4e678dfa9d472235.tar.gz
(Fminibuffer_complete): this_command renamed to Vthis_command.
-rw-r--r--src/minibuf.c6
1 files 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;