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:
parent
a47e454e39
commit
637b47089a
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue