emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/subr.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el [lexbind]
Date: Sat, 04 Sep 2004 05:46:45 -0400

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.307.2.18 emacs/lisp/subr.el:1.307.2.19
*** emacs/lisp/subr.el:1.307.2.18       Sat Sep  4 09:18:38 2004
--- emacs/lisp/subr.el  Sat Sep  4 09:19:26 2004
***************
*** 650,656 ****
    "Return a list of symbols representing the modifier keys in event EVENT.
  The elements of the list may include `meta', `control',
  `shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
! and `down'."
    (let ((type event))
      (if (listp type)
        (setq type (car type)))
--- 650,660 ----
    "Return a list of symbols representing the modifier keys in event EVENT.
  The elements of the list may include `meta', `control',
  `shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
! and `down'.
! EVENT may be an event or an event type.  If EVENT is a symbol
! that has never been used in an event that has been read as input
! in the current Emacs session, then this function can return nil,
! even when EVENT actually has modifiers."
    (let ((type event))
      (if (listp type)
        (setq type (car type)))
***************
*** 677,683 ****
  
  (defun event-basic-type (event)
    "Return the basic type of the given event (all modifiers removed).
! The value is a printing character (not upper case) or a symbol."
    (if (consp event)
        (setq event (car event)))
    (if (symbolp event)
--- 681,690 ----
  
  (defun event-basic-type (event)
    "Return the basic type of the given event (all modifiers removed).
! The value is a printing character (not upper case) or a symbol.
! EVENT may be an event or an event type.  If EVENT is a symbol
! that has never been used in an event that has been read as input
! in the current Emacs session, then this function may return nil."
    (if (consp event)
        (setq event (car event)))
    (if (symbolp event)
***************
*** 1900,1906 ****
         (kill-buffer nil)))))
  
  (defmacro with-local-quit (&rest body)
!   "Execute BODY with `inhibit-quit' temporarily bound to nil."
    (declare (debug t) (indent 0))
    `(condition-case nil
         (let ((inhibit-quit nil))
--- 1907,1916 ----
         (kill-buffer nil)))))
  
  (defmacro with-local-quit (&rest body)
!   "Execute BODY, allowing quits to terminate BODY but not escape further.
! When a quit terminates BODY, `with-local-quit' requests another quit when
! it finishes.  That quit will be processed in turn, the next time quitting
! is again allowed."
    (declare (debug t) (indent 0))
    `(condition-case nil
         (let ((inhibit-quit nil))




reply via email to

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