mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 12:20:39 -08:00
(Fmacroexpand): For an autoload definition,
check the 4th elt, not the car of the 4th elt.
This commit is contained in:
parent
56b185250f
commit
47ccd8b6ef
1 changed files with 1 additions and 2 deletions
|
|
@ -809,8 +809,7 @@ definitions to shadow the loaded ones for use in file byte-compilation.")
|
|||
{
|
||||
/* Autoloading function: will it be a macro when loaded? */
|
||||
tem = Fnth (make_number (4), def);
|
||||
if (EQ (XCONS (tem)->car, Qt)
|
||||
|| EQ (XCONS (tem)->car, Qmacro))
|
||||
if (EQ (tem, Qt) || EQ (tem, Qmacro))
|
||||
/* Yes, load it and try again. */
|
||||
{
|
||||
do_autoload (def, sym);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue