Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5221fd63
Commit
5221fd63
authored
Jun 09, 1995
by
Karl Heuer
Browse files
(Fminibuffer_complete): Make last_command be kboard-local.
parent
346e0c2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/minibuf.c
src/minibuf.c
+2
-1
No files found.
src/minibuf.c
View file @
5221fd63
...
...
@@ -26,6 +26,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "frame.h"
#include "window.h"
#include "syntax.h"
#include "keyboard.h"
#define min(a, b) ((a) < (b) ? (a) : (b))
...
...
@@ -1218,7 +1219,7 @@ scroll the window of possible completions.")
/* If the previous command was not this, then mark the completion
buffer obsolete. */
if
(
!
EQ
(
last_command
,
this_command
))
if
(
!
EQ
(
current_kboard
->
V
last_command
,
this_command
))
Vminibuf_scroll_window
=
Qnil
;
window
=
Vminibuf_scroll_window
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment