]> git.eshelyaron.com Git - emacs.git/commitdiff
* international/quail.el (quail-input-method): Use with-silent-modifications
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 11 Mar 2015 15:06:11 +0000 (11:06 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 11 Mar 2015 15:06:11 +0000 (11:06 -0400)
lisp/ChangeLog
lisp/international/quail.el

index c5d2e6c95fd374580fb466c21bf43b54f105c480..35689c1e8d29bff194b745a199a5fbd24d081260 100644 (file)
@@ -1,5 +1,8 @@
 2015-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * international/quail.el (quail-input-method):
+       Use with-silent-modifications.
+
        * simple.el (goto-history-element): Don't burp on t history.
 
 2015-03-10  Paul Eggert  <eggert@cs.ucla.edu>
index 2755fd68bef00dcfebe10d9f7b3f2f058a0ddfa4..5e422bf5fdb162433f124a991e97152ddef13a15 100644 (file)
@@ -202,7 +202,7 @@ It is an alist of translations and corresponding keys."
 See also the documentation of `quail-define-package'."
   (nth 11 quail-current-package))
 (defsubst quail-overlay-plist ()
-  "Return property list of an overly used in the current Quail package."
+  "Return property list of an overlay used in the current Quail package."
   (nth 12 quail-current-package))
 (defsubst quail-update-translation-function ()
   "Return a function for updating translation in the current Quail package."
@@ -1335,9 +1335,7 @@ If STR has `advice' text property, append the following special event:
          overriding-local-map)
       (list key)
     (quail-setup-overlays (quail-conversion-keymap))
-    (let ((modified-p (buffer-modified-p))
-         (buffer-undo-list t)
-         (inhibit-modification-hooks t))
+    (with-silent-modifications
       (unwind-protect
          (let ((input-string (if (quail-conversion-keymap)
                                  (quail-start-conversion key)
@@ -1349,7 +1347,6 @@ If STR has `advice' text property, append the following special event:
                  (list (aref input-string 0))
                (quail-input-string-to-events input-string))))
        (quail-delete-overlays)
-       (set-buffer-modified-p modified-p)
        ;; Run this hook only when the current input method doesn't require
        ;; conversion.  When conversion is required, the conversion function
        ;; should run this hook at a proper timing.