1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 02:51:31 -08:00

(read-quoted-char): Don't mask down to 8 bits.

This commit is contained in:
Richard M. Stallman 1997-05-09 06:31:04 +00:00
parent a47e454e39
commit 637b47089a

View file

@ -639,7 +639,7 @@ or three octal digits representing its character code."))
(t (setq code char count 259))))
;; Turn a meta-character into a character with the 0200 bit set.
(logior (if (/= (logand code ?\M-\^@) 0) 128 0)
(logand 255 code))))
code)))
(defun force-mode-line-update (&optional all)
"Force the mode-line of the current buffer to be redisplayed.