diff options
| -rw-r--r-- | lisp/international/iso-acc.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/international/iso-acc.el b/lisp/international/iso-acc.el index 9f3fa7a53e6..6d484b39c20 100644 --- a/lisp/international/iso-acc.el +++ b/lisp/international/iso-acc.el | |||
| @@ -265,13 +265,14 @@ the language you choose).") | |||
| 265 | ;; Found it: return the mapped char | 265 | ;; Found it: return the mapped char |
| 266 | (vector entry) | 266 | (vector entry) |
| 267 | ;; Otherwise, advance and schedule the second key for execution. | 267 | ;; Otherwise, advance and schedule the second key for execution. |
| 268 | (setq unread-command-events (list second-char)) | 268 | (setq unread-command-events |
| 269 | (cons (list second-char) unread-command-events)) | ||
| 269 | (vector first-char)))) | 270 | (vector first-char)))) |
| 270 | 271 | ||
| 271 | ;; It is a matter of taste if you want the minor mode indicated | 272 | ;; It is a matter of taste if you want the minor mode indicated |
| 272 | ;; in the mode line... | 273 | ;; in the mode line... |
| 273 | ;; If so, uncomment the next four lines. | 274 | ;; If so, uncomment the next four lines. |
| 274 | ;; (or (assq 'iso-accents-mode minor-mode-map-alist) | 275 | ;; (or (assq 'iso-accents-mode minor-mode-alist) |
| 275 | ;; (setq minor-mode-alist | 276 | ;; (setq minor-mode-alist |
| 276 | ;; (append minor-mode-alist | 277 | ;; (append minor-mode-alist |
| 277 | ;; '((iso-accents-mode " ISO-Acc"))))) | 278 | ;; '((iso-accents-mode " ISO-Acc"))))) |