changeset 59110:5feed0f86f52

(Fdefalias): Use (defun . FN_NAME) in LOADHIST_ATTACH.
author Richard M. Stallman <rms@gnu.org>
date Mon, 27 Dec 2004 16:03:49 +0000
parents 0b61bbccc6e1
children a9827c6a7e4e
files src/data.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/data.c	Mon Dec 27 16:02:24 2004 +0000
+++ b/src/data.c	Mon Dec 27 16:03:49 2004 +0000
@@ -723,7 +723,7 @@
       && EQ (XCAR (XSYMBOL (symbol)->function), Qautoload))
     LOADHIST_ATTACH (Fcons (Qt, symbol));
   definition = Ffset (symbol, definition);
-  LOADHIST_ATTACH (symbol);
+  LOADHIST_ATTACH (Fcons (Qdefun, symbol));
   if (!NILP (docstring))
     Fput (symbol, Qfunction_documentation, docstring);
   return definition;