aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 51af9d364fe..9d34a467d96 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1016,7 +1016,8 @@ Repeating \\[universal-argument] without digits or minus sign
1016 (let* ((key (this-command-keys)) 1016 (let* ((key (this-command-keys))
1017 (keylist (listify-key-sequence key))) 1017 (keylist (listify-key-sequence key)))
1018 (setq unread-command-events 1018 (setq unread-command-events
1019 (nthcdr universal-argument-num-events keylist))) 1019 (append (nthcdr universal-argument-num-events keylist)
1020 unread-command-events)))
1020 (reset-this-command-lengths) 1021 (reset-this-command-lengths)
1021 (setq overriding-terminal-local-map nil)) 1022 (setq overriding-terminal-local-map nil))
1022 1023