]> git.eshelyaron.com Git - emacs.git/commitdiff
(do_autoload): Record only autoloads in the autoload property of symbols.
authorLute Kamstra <lute@gnu.org>
Thu, 28 Apr 2005 08:38:35 +0000 (08:38 +0000)
committerLute Kamstra <lute@gnu.org>
Thu, 28 Apr 2005 08:38:35 +0000 (08:38 +0000)
src/eval.c

index 8700ca222ced1e0fa22128e90de1965075ec0008..6832f3197addecde3d74c5dcf14c159e5bdf0af7 100644 (file)
@@ -1,6 +1,6 @@
 /* Evaluator for GNU Emacs Lisp interpreter.
-   Copyright (C) 1985, 86, 87, 93, 94, 95, 99, 2000, 2001, 02, 2004
-     Free Software Foundation, Inc.
+   Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
+     2002, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -1982,10 +1982,7 @@ do_autoload (fundef, funname)
       second = Fcdr (first);
       first = Fcar (first);
 
-      /* Note: This test is subtle.  The cdr of an autoload-queue entry
-        may be an atom if the autoload entry was generated by a defalias
-        or fset.  */
-      if (CONSP (second))
+      if (CONSP (second) && EQ (XCAR (second), Qautoload))
        Fput (first, Qautoload, (XCDR (second)));
 
       queue = XCDR (queue);