diff options
| author | Richard M. Stallman | 1995-10-06 15:12:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-06 15:12:44 +0000 |
| commit | 9ebce7e10dbfc5fa95ccbbfff85064bc1cf95915 (patch) | |
| tree | f099b56978640fdc6e2aa09cbf0cfbf2f8ca64d5 /lisp | |
| parent | 730cce4a6c4aa522aa0658606b6c33a44e801e21 (diff) | |
| download | emacs-9ebce7e10dbfc5fa95ccbbfff85064bc1cf95915.tar.gz emacs-9ebce7e10dbfc5fa95ccbbfff85064bc1cf95915.zip | |
Fix typo calling iso-accents-customize.
(iso-accents-compose): If this-command is non-nil, do prompt.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/international/iso-acc.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/international/iso-acc.el b/lisp/international/iso-acc.el index bbd6e5f52e4..8e877a1e349 100644 --- a/lisp/international/iso-acc.el +++ b/lisp/international/iso-acc.el | |||
| @@ -156,7 +156,9 @@ See the function `iso-accents-mode'.") | |||
| 156 | ;; Wait for the second key and look up the combination. | 156 | ;; Wait for the second key and look up the combination. |
| 157 | (second-char (if (or prompt | 157 | (second-char (if (or prompt |
| 158 | (not (eq (key-binding "a") | 158 | (not (eq (key-binding "a") |
| 159 | 'self-insert-command))) | 159 | 'self-insert-command)) |
| 160 | ;; Called from anything but the command loop. | ||
| 161 | this-command) | ||
| 160 | (progn | 162 | (progn |
| 161 | (message "%s%c" | 163 | (message "%s%c" |
| 162 | (or prompt "Compose with ") | 164 | (or prompt "Compose with ") |
| @@ -316,7 +318,7 @@ Noninteractively, this operates on text from START to END." | |||
| 316 | (insert (car (cdr (car entry))))) | 318 | (insert (car (cdr (car entry))))) |
| 317 | (forward-char 1))))))) | 319 | (forward-char 1))))))) |
| 318 | 320 | ||
| 319 | (iso-customize-accents "default") | 321 | (iso-accents-customize "default") |
| 320 | 322 | ||
| 321 | ;;; iso-acc.el ends here | 323 | ;;; iso-acc.el ends here |
| 322 | 324 | ||