diff options
| author | Joakim Verona | 2012-10-24 13:07:12 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-10-24 13:07:12 +0200 |
| commit | fd0ea43455f2bd9c96f76b87188f0808bd6ce213 (patch) | |
| tree | 2a34edfe608adb294de5eef6678e2f9ba457c02c /lisp/repeat.el | |
| parent | 6d3ae671153437538da2d1b41af0d1589ec8148b (diff) | |
| parent | 4e79d09a237fe27c0a3d79ddb67642389f414614 (diff) | |
| download | emacs-fd0ea43455f2bd9c96f76b87188f0808bd6ce213.tar.gz emacs-fd0ea43455f2bd9c96f76b87188f0808bd6ce213.zip | |
upstream
Diffstat (limited to 'lisp/repeat.el')
| -rw-r--r-- | lisp/repeat.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/repeat.el b/lisp/repeat.el index e38442a434b..a6c803ae773 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el | |||
| @@ -289,6 +289,10 @@ recently executed command not bound to an input event\"." | |||
| 289 | (interactive) | 289 | (interactive) |
| 290 | (let ((repeat-message-function fun)) | 290 | (let ((repeat-message-function fun)) |
| 291 | (setq this-command 'repeat) | 291 | (setq this-command 'repeat) |
| 292 | ;; Beware: messing with `real-this-command' is *bad*, but we | ||
| 293 | ;; need it so `last-repeatable-command' can be recognized | ||
| 294 | ;; later (bug#12232). | ||
| 295 | (setq real-this-command 'repeat) | ||
| 292 | (call-interactively 'repeat)))))) | 296 | (call-interactively 'repeat)))))) |
| 293 | map))))) | 297 | map))))) |
| 294 | 298 | ||