>From 493f0f63ddda2a3a8a360cec76c9f221aecac29d Mon Sep 17 00:00:00 2001 From: Visuwesh Date: Wed, 29 Jun 2022 17:42:18 +0530 Subject: [PATCH] Stop itrans input methods from stealing motion keys The itrans input methods only do transliteration and as such don't need any of the fancy features a non-SIMPLE quail package offers. This change prevents the itrans IMs from stealing the motion keys. See . * leim/quail/indian.el (quail-define-indian-trans-package): Make the SIMPLE argument non-nil. --- lisp/leim/quail/indian.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/leim/quail/indian.el b/lisp/leim/quail/indian.el index 8fffcc3511..a67af1cac5 100644 --- a/lisp/leim/quail/indian.el +++ b/lisp/leim/quail/indian.el @@ -43,7 +43,7 @@ quail-define-indian-trans-package ;; determining that this is a quail definition (it searches for ;; "(quail-define-package"). (funcall #'quail-define-package pkgname lang title t doc - nil nil nil nil nil nil t nil) + nil nil nil nil nil nil t nil nil nil t) (maphash (lambda (key val) (quail-defrule key (if (= (length val) 1) -- 2.35.1