From: Dave Love Date: Sat, 9 Nov 2002 12:55:37 +0000 (+0000) Subject: (quail-input-string-to-events): Revert X-Git-Tag: ttn-vms-21-2-B4~12528 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9372a49f0c7aa1979d79dd29a6bf8c35c18e27e4;p=emacs.git (quail-input-string-to-events): Revert last change. --- diff --git a/lisp/international/quail.el b/lisp/international/quail.el index 8913195fcf1..03dde544ed8 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el @@ -2,7 +2,7 @@ ;; Copyright (C) 1995, 2000 Electrotechnical Laboratory, JAPAN. ;; Licensed to the Free Software Foundation. -;; Copyright (C) 2001 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. ;; Author: Kenichi HANDA ;; Naoto TAKAHASHI @@ -1279,11 +1279,9 @@ Do so while interleaving with the following special events: (let* ((events (mapcar (lambda (c) ;; This gives us the chance to unify on input - ;; (e.g. using ucs-tables.el). Fixme: The result - ;; of Quail input doesn't currently go through - ;; `keyboard-translate-table'. - (or (and (char-table-p keyboard-translate-table) - (aref keyboard-translate-table c)) + ;; (e.g. using ucs-tables.el). + (or (and translation-table-for-input + (aref translation-table-for-input c)) c)) str)) (len (length str))