]> git.eshelyaron.com Git - emacs.git/commitdiff
(compose-region, decompose-region):
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 May 2007 16:14:21 +0000 (16:14 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 May 2007 16:14:21 +0000 (16:14 +0000)
Use inhibit-read-only and restore-buffer-modified-p.

lisp/ChangeLog
lisp/composite.el

index a2976615ad1b8cb8c1b792948541ae8b568f15e1..8c38ef07b0a36169925c142d8732797e020bc5ce 100644 (file)
@@ -1,5 +1,8 @@
 2007-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * composite.el (compose-region, decompose-region):
+       Use inhibit-read-only and restore-buffer-modified-p.
+
        * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
        (xterm-mouse-event): Use it.
 
index ede7d023e87cc81c1db93248aea5ad291ebbfdad..f22c6b52da0d86820e0d2338fe7c36d417074832 100644 (file)
@@ -194,7 +194,7 @@ adjust the composition when it gets invalid because of a change of
 text in the composition."
   (interactive "r")
   (let ((modified-p (buffer-modified-p))
-       (buffer-read-only nil))
+       (inhibit-read-only t))
     (if (or (vectorp components) (listp components))
        (setq components (encode-composition-components components)))
     (compose-region-internal start end components modification-func)
@@ -208,9 +208,9 @@ When called from a program, expects two arguments,
 positions (integers or markers) specifying the region."
   (interactive "r")
   (let ((modified-p (buffer-modified-p))
-       (buffer-read-only nil))
+       (inhibit-read-only t))
     (remove-text-properties start end '(composition nil))
-    (set-buffer-modified-p modified-p)))
+    (restore-buffer-modified-p modified-p)))
 
 ;;;###autoload
 (defun compose-string (string &optional start end components modification-func)
@@ -372,8 +372,8 @@ after a sequence of character events."
 ;;;###autoload(global-set-key [compose-last-chars] 'compose-last-chars)
 
 \f
-;;; The following codes are only for backward compatibility with Emacs
-;;; 20.4 and earlier.
+;; The following codes are only for backward compatibility with Emacs
+;; 20.4 and earlier.
 
 ;;;###autoload
 (defun decompose-composite-char (char &optional type with-composition-rule)
@@ -392,5 +392,5 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored."
 
 \f
 
-;;; arch-tag: ee703d77-1723-45d4-a31f-e9f0f867aa33
+;; arch-tag: ee703d77-1723-45d4-a31f-e9f0f867aa33
 ;;; composite.el ends here