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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Thu, 08 Nov 2001 20:02:27 -0500

Index: emacs/lisp/subr.el
diff -u emacs/lisp/subr.el:1.272 emacs/lisp/subr.el:1.273
--- emacs/lisp/subr.el:1.272    Thu Nov  8 07:08:51 2001
+++ emacs/lisp/subr.el  Thu Nov  8 20:02:27 2001
@@ -1538,12 +1538,9 @@
           (fboundp object)
           (setq object (indirect-function object))
           (eq (car-safe object) 'autoload)
-          (not (eq (car-safe
-                    (cdr-safe (cdr-safe (cdr-safe (cdr-safe object)))))
-                   'keymap)))
+          (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object)))))))
       (subrp object) (byte-code-function-p object)
-      (eq (car-safe object) 'lambda)
-      (eq (car-safe object) 'macro)))
+      (eq (car-safe object) 'lambda)))
 
 (defun interactive-form (function)
   "Return the interactive form of FUNCTION.



reply via email to

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