]> git.eshelyaron.com Git - emacs.git/commitdiff
(toggle-enable-multibyte-characters): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 21 Dec 1997 01:49:03 +0000 (01:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 21 Dec 1997 01:49:03 +0000 (01:49 +0000)
lisp/international/mule-cmds.el

index 193465dbae0b9f099171edea31a99fb2b34000bb..8a32a9f4c1937bd75b30ed8824302e93248e5a94 100644 (file)
 ;;; (define-key global-map [?\S- ] 'toggle-input-method)
 
 (defun toggle-enable-multibyte-characters (&optional arg)
-  "Change whether this buffer enables multibyte characters.
-With arg, make them enable iff arg is positive."
+  "Change whether this buffer uses multibyte characters.
+With arg, use multibyte characters if the arg is positive.
+
+Note that this command does not convert the byte contents of
+the buffer; it only changes the way those bytes are interpreted.
+In general, therefore, this command *changes* the sequence of
+characters that the current buffer contains.
+
+We suggest you avoid using use this command unless you know what you
+are doing.  If you use it by mistake, and the buffer is now displayed
+wrong, use this command again to toggle back to the right mode."
   (interactive "P")
   (setq enable-multibyte-characters
        (if (null arg) (null enable-multibyte-characters)