summaryrefslogtreecommitdiff
path: root/lisp/composite.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-05-08 03:36:27 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-05-08 03:36:27 +0000
commitd4f635a5ae37ca29429348d19e998050a9fc62ee (patch)
tree7bb0ad9bbc33f747ab2a859572c773aef9e9f996 /lisp/composite.el
parentd239a0555b91a3c8b086bd6c6f552c1d76f165e1 (diff)
downloademacs-d4f635a5ae37ca29429348d19e998050a9fc62ee.tar.gz
(toggle-auto-composition): Don't use `iff' in docstring.
Diffstat (limited to 'lisp/composite.el')
-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))))