]> git.eshelyaron.com Git - emacs.git/commitdiff
(read-quoted-char): Don't mask down to 8 bits.
authorRichard M. Stallman <rms@gnu.org>
Fri, 9 May 1997 06:31:04 +0000 (06:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 9 May 1997 06:31:04 +0000 (06:31 +0000)
lisp/subr.el

index ccd08a52cd0fda1b5e6cb288ad081cb6abb8d4f8..a4ad6937f43355b979502a33e9216fc3990d3e4b 100644 (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.