aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index ccd08a52cd0..a4ad6937f43 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -639,7 +639,7 @@ or three octal digits representing its character code."))
639 (t (setq code char count 259)))) 639 (t (setq code char count 259))))
640 ;; Turn a meta-character into a character with the 0200 bit set. 640 ;; Turn a meta-character into a character with the 0200 bit set.
641 (logior (if (/= (logand code ?\M-\^@) 0) 128 0) 641 (logior (if (/= (logand code ?\M-\^@) 0) 128 0)
642 (logand 255 code)))) 642 code)))
643 643
644(defun force-mode-line-update (&optional all) 644(defun force-mode-line-update (&optional all)
645 "Force the mode-line of the current buffer to be redisplayed. 645 "Force the mode-line of the current buffer to be redisplayed.