bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

BUG: autoload.el generates incorrect (quote function) code


From: Jari Aalto+mail.emacs
Subject: BUG: autoload.el generates incorrect (quote function) code
Date: 05 Mar 2001 19:38:40 +0200
User-agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7 (i386-*-windows98.1998)

    Using autoload.el in 20.7 results code like:

(autoload (quote turn-off-folding-mode) "folding" "\
Turn on folding." nil nil)

(autoload (quote turn-on-folding-mode) "folding" "\
Turn on folding." nil nil)

    I believe the proper syntax for function names would be below.
    I'm not sure, but I believe that byte compiling above autolaod
    definitins does not give correct hints to byte compiler parsed
    (inefficient byte code).

    Jari

(autoload (function turn-off-folding-mode) "folding" "\
Turn on folding." nil nil)

(autoload (function turn-on-folding-mode) "folding" "\
Turn on folding." nil nil)

 



reply via email to

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