aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-12-16 19:14:37 +0000
committerEli Zaretskii2001-12-16 19:14:37 +0000
commite5ecf6e91e04cc49daf3471d6775d21dd73b409d (patch)
tree227a02036a42141331a495d52ac0acd62fa1878a
parent784bc7cdd9b59362d43376c72ce87bce9e519ae9 (diff)
downloademacs-e5ecf6e91e04cc49daf3471d6775d21dd73b409d.tar.gz
emacs-e5ecf6e91e04cc49daf3471d6775d21dd73b409d.zip
(quail-input-string-to-events): Fix last change.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/quail.el6
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 85ed8b4c7b1..08d446f5dfc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * international/quail.el (quail-input-string-to-events): Fix last
4 change.
5
12001-12-16 Richard M. Stallman <rms@gnu.org> 62001-12-16 Richard M. Stallman <rms@gnu.org>
2 7
3 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars. 8 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
diff --git a/lisp/international/quail.el b/lisp/international/quail.el
index 5155f363b66..49ff236412c 100644
--- a/lisp/international/quail.el
+++ b/lisp/international/quail.el
@@ -1270,12 +1270,14 @@ The returned value is a Quail map specific to KEY."
1270Do so while interleaving with the following special events: 1270Do so while interleaving with the following special events:
1271\(compose-last-chars LEN COMPONENTS) 1271\(compose-last-chars LEN COMPONENTS)
1272\(quail-advice INPUT-STRING)" 1272\(quail-advice INPUT-STRING)"
1273 (let* ((events (lambda (c) 1273 (let* ((events
1274 (mapcar (lambda (c)
1274 ;; This gives us the chance to unify on input 1275 ;; This gives us the chance to unify on input
1275 ;; (e.g. using ucs-tables.el). 1276 ;; (e.g. using ucs-tables.el).
1276 (or (and translation-table-for-input 1277 (or (and translation-table-for-input
1277 (aref translation-table-for-input c)) 1278 (aref translation-table-for-input c))
1278 c))) 1279 c))
1280 (string-to-list str)))
1279 (len (length str)) 1281 (len (length str))
1280 (idx len) 1282 (idx len)
1281 composition from to) 1283 composition from to)