Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f4cfd81a
Commit
f4cfd81a
authored
Apr 28, 2005
by
Lute Kamstra
Browse files
(do_autoload): Record only autoloads in the autoload property of symbols.
parent
500509e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
src/eval.c
src/eval.c
+3
-6
No files found.
src/eval.c
View file @
f4cfd81a
/* 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,
19
86,
19
87,
19
93,
19
94,
19
95,
1
99
9
, 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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment