emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/lisp-mode.el
Date: Fri, 21 Dec 2001 09:13:38 -0500

Index: emacs/lisp/emacs-lisp/lisp-mode.el
diff -c emacs/lisp/emacs-lisp/lisp-mode.el:1.132 
emacs/lisp/emacs-lisp/lisp-mode.el:1.133
*** emacs/lisp/emacs-lisp/lisp-mode.el:1.132    Tue Dec  4 02:09:47 2001
--- emacs/lisp/emacs-lisp/lisp-mode.el  Fri Dec 21 09:07:45 2001
***************
*** 530,536 ****
  Likewise for other constructs as necessary."
    ;; The code in edebug-defun should be consistent with this, but not
    ;; the same, since this gets a macroexpended form.
!   (cond ((and (eq (car form) 'defvar)
              (cdr-safe (cdr-safe form)))
         ;; Force variable to be bound.
         (cons 'defconst (cdr form)))
--- 530,538 ----
  Likewise for other constructs as necessary."
    ;; The code in edebug-defun should be consistent with this, but not
    ;; the same, since this gets a macroexpended form.
!   (cond ((not (listp form))
!        form)
!       ((and (eq (car form) 'defvar)
              (cdr-safe (cdr-safe form)))
         ;; Force variable to be bound.
         (cons 'defconst (cdr form)))



reply via email to

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