emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: C-q vs documentation


From: Richard Stallman
Subject: Re: C-q vs documentation
Date: Sat, 22 Mar 2003 21:53:15 -0500

Does this patch fix it?

*** subr.el.~1.344.~    Mon Mar 17 13:59:36 2003
--- subr.el     Sat Mar 22 09:03:07 2003
***************
*** 1112,1118 ****
                 (setq char (aref translated 0)))))
        (cond ((null char))
            ((not (integerp char))
!            (setq unread-command-events (listify-key-sequence 
(this-single-command-raw-keys))
                   done t))
            ((/= (logand char ?\M-\^@) 0)
             ;; Turn a meta-character into a character with the 0200 bit set.
--- 1112,1118 ----
                 (setq char (aref translated 0)))))
        (cond ((null char))
            ((not (integerp char))
!            (setq unread-command-events (list char)
                   done t))
            ((/= (logand char ?\M-\^@) 0)
             ;; Turn a meta-character into a character with the 0200 bit set.
***************
*** 1129,1135 ****
            ((and (not first) (eq char ?\C-m))
             (setq done t))
            ((not first)
!            (setq unread-command-events (listify-key-sequence 
(this-single-command-raw-keys))
                   done t))
            (t (setq code char
                     done t)))
--- 1129,1135 ----
            ((and (not first) (eq char ?\C-m))
             (setq done t))
            ((not first)
!            (setq unread-command-events (list char)
                   done t))
            (t (setq code char
                     done t)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]