diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-12-21 01:49:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-12-21 01:49:03 +0000 |
commit | 6998e1a1e534c28c3b14881203c5e6e1dc6e0064 (patch) | |
tree | d09eadab03a82d6b9dd20b6f04ae8678191a5a60 /lisp | |
parent | 747a0e2f2e715deb844b3b7a0128c30721cce047 (diff) | |
download | emacs-6998e1a1e534c28c3b14881203c5e6e1dc6e0064.tar.gz |
(toggle-enable-multibyte-characters): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/international/mule-cmds.el | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 193465dbae0..8a32a9f4c19 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -149,8 +149,17 @@ ;;; (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) |