aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/composite.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/composite.el b/lisp/composite.el
index ad43bc315d6..b3270327321 100644
--- a/lisp/composite.el
+++ b/lisp/composite.el
@@ -620,7 +620,7 @@ Auto Composition mode in all buffers (this is the default)."
620 620
621(defun toggle-auto-composition (&optional arg) 621(defun toggle-auto-composition (&optional arg)
622 "Change whether automatic character composition is enabled in this buffer. 622 "Change whether automatic character composition is enabled in this buffer.
623With arg, enable it iff arg is positive." 623With arg, enable it if and only if arg is positive."
624 (interactive "P") 624 (interactive "P")
625 (let ((enable (if (null arg) (not auto-composition-function) 625 (let ((enable (if (null arg) (not auto-composition-function)
626 (> (prefix-numeric-value arg) 0)))) 626 (> (prefix-numeric-value arg) 0))))