From: Richard M. Stallman Date: Fri, 6 Oct 1995 15:12:44 +0000 (+0000) Subject: Fix typo calling iso-accents-customize. X-Git-Tag: emacs-19.34~2724 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9ebce7e10dbfc5fa95ccbbfff85064bc1cf95915;p=emacs.git Fix typo calling iso-accents-customize. (iso-accents-compose): If this-command is non-nil, do prompt. --- 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'.") ;; Wait for the second key and look up the combination. (second-char (if (or prompt (not (eq (key-binding "a") - 'self-insert-command))) + 'self-insert-command)) + ;; Called from anything but the command loop. + this-command) (progn (message "%s%c" (or prompt "Compose with ") @@ -316,7 +318,7 @@ Noninteractively, this operates on text from START to END." (insert (car (cdr (car entry))))) (forward-char 1))))))) -(iso-customize-accents "default") +(iso-accents-customize "default") ;;; iso-acc.el ends here