summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)."
(defun toggle-auto-composition (&optional arg)
"Change whether automatic character composition is enabled in this buffer.
-With arg, enable it iff arg is positive."
+With arg, enable it if and only if arg is positive."
(interactive "P")
(let ((enable (if (null arg) (not auto-composition-function)
(> (prefix-numeric-value arg) 0))))