mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-25 09:20:59 -08:00
(iso-accents-compose): Push SECOND-CHAR
as is on unread-command-events instead of `(SECOND-CHAR)'.
This commit is contained in:
parent
9a7bdceb5d
commit
f6f4bfb3d5
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2001-10-29 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
|
||||
as is on unread-command-events instead of `(SECOND-CHAR)'.
|
||||
|
||||
2001-10-29 Andre Spiegel <spiegel@gnu.org>
|
||||
|
||||
* vc.el: Mention vc-*-switches in backend API documentation.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
;;; iso-acc.el --- minor mode providing electric accent keys
|
||||
|
||||
;; Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Johan Vromans
|
||||
;; Maintainer: FSF
|
||||
|
|
@ -319,7 +319,7 @@ the language you choose)."
|
|||
entry))
|
||||
;; Otherwise, advance and schedule the second key for execution.
|
||||
(setq unread-command-events
|
||||
(cons (list second-char) unread-command-events))
|
||||
(push second-char unread-command-events))
|
||||
(vector first-char))))
|
||||
|
||||
;; It is a matter of taste if you want the minor mode indicated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue