Package: emacs;
Reported by: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Date: Mon, 14 Sep 2009 10:40:06 UTC
Severity: normal
Tags: moreinfo
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 4427 in the body.
You can then email your comments to 4427 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
View this report as an mbox folder, status mbox, maintainer mbox
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:bug#4427; Package emacs.
(Mon, 14 Sep 2009 10:40:06 GMT) Full text and rfc822 format available.Thierry Volpiatto <thierry.volpiatto <at> gmail.com>:Emacs Bugs <bug-gnu-emacs <at> gnu.org>.
(Mon, 14 Sep 2009 10:40:06 GMT) Full text and rfc822 format available.Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com> To: bug-gnu-emacs <at> gnu.org Subject: 23.1; defun* don't work when compiled. Date: Mon, 14 Sep 2009 12:24:40 +0200
Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.
Your bug report will be posted to the bug-gnu-emacs <at> gnu.org mailing list,
and to the gnu.emacs.bug news group.
Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:
Hi all,
In traverselisp.el, i use cl stuff with
(eval-when-compile (require 'cl)) at start of file.
I have functions that are like:
(defun* foo (&key a b)...
They all work fine after compiling file.
However, i have one new function that don't work when compiling file but
work as normal when loading the .el file, or evaluate the function with
C-M x.
I wonder why.
It seem that variables coming from key arg and evaluated in a cond clause
don't work when compiled and evaluated from compiled file (.elc).
Here is the output of:
(symbol-function 'traverse-auto-document-lisp-buffer)
After loading only .elc file.
--8<---------------cut here---------------start------------->8---
#[(&rest --cl-rest--) "\306>A@.\307>A@..\2038.@\310>\203!.AA\211.\202.\203Y.\344
.C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \360=\203\222.\354\355.C!!\204\345.
\203\210.\344
.C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \361=\203\270.
\203\256.\344
.C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \362=\203\336.
\203\324.\344
.C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210+.?A\211.?\204.. \312\207" [--cl-rest-- type prefix --cl-keys-- boundary-regexp regexp :type :prefix (:type :prefix :allow-other-keys) :allow-other-keys nil error ...] 9 ("/home/thierry/elisp/traverselisp.elc" . 45818)]
--8<---------------cut here---------------end--------------->8---
Here is the same after evaluation of .el file or function with C-M x:
--8<---------------cut here---------------start------------->8---
(lambda (&rest --cl-rest--) "Not documented
(fn &key TYPE PREFIX)" (let* ((type ...) (prefix ...)) (let (...) (while --cl-keys-- ...)) (block traverse-auto-document-lisp-buffer (let* ... ... ... ... ... ...))))
--8<---------------cut here---------------end--------------->8---
So here it is normal and the function work as intended.
When using the function from .elc file, i have no error, the function
just return nil, even with debug-on-error turned on.
Here the function:
,----
| (defun* traverse-auto-document-lisp-buffer (&key type prefix)
| (let* ((boundary-regexp "^;;=*LIMIT.*")
| (regexp (case type
| ('nested "^ +\(def\\(un\\|subst\\|advice\\)")
| ('command "\(def\\(un\\|subst\\)")
| ('internal-variable "\(defvar")
| ('user-variable "\(defcustom")
| ('faces "\(defface")
| ('function "\(def\\(un\\|subst\\|advice\\)")
| (t (error "Unknow type"))))
| (fn-list (traverse-find-readlines
| (current-buffer)
| regexp
| :insert-fn 'buffer))
| beg end)
| (insert "\n") (setq beg (point))
| (save-excursion (when (re-search-forward boundary-regexp)
| (forward-line -1) (setq end (point))))
| (delete-region beg end)
| (dolist (i fn-list)
| (let* ((elm (cadr i))
| (elm-mod (replace-regexp-in-string regexp "" elm))
| (elm-fin (replace-regexp-in-string "\(\\|\)" ""(car (split-string elm-mod)))))
| (cond ((eq type 'command)
| (when (commandp (intern elm-fin))
| (if prefix
| (when (string-match prefix elm-fin)
| (insert (concat ";; \`" elm-fin "\'\n")))
| (insert (concat ";; \`" elm-fin "\'\n")))))
| ((eq type 'function)
| (when (not (commandp (intern elm-fin)))
| (if prefix
| (when (string-match prefix elm-fin)
| (insert (concat ";; \`" elm-fin "\'\n")))
| (insert (concat ";; \`" elm-fin "\'\n")))))
| ((eq type 'internal-variable)
| (if prefix
| (when (string-match prefix elm-fin)
| (insert (concat ";; \`" elm-fin "\'\n")))
| (insert (concat ";; \`" elm-fin "\'\n"))))
| ((eq type 'nested)
| (if prefix
| (when (string-match prefix elm-fin)
| (insert (concat ";; \`" elm-fin "\'\n")))
| (insert (concat ";; \`" elm-fin "\'\n"))))
| (t
| (insert (concat ";; \`" elm-fin "\'\n"))))))))
`----
If Emacs crashed, and you have the Emacs process in the gdb debugger,
please include the output from the following gdb commands:
`bt full' and `xbacktrace'.
If you would like to further debug the crash, please read the file
/usr/share/emacs/23.1/etc/DEBUG for instructions.
In GNU Emacs 23.1.1 (i686-pc-linux-gnu, GTK+ Version 2.16.5)
of 2009-07-31 on tux
Windowing system distributor `The X.Org Foundation', version 11.0.10503000
configured using `configure '--prefix=/usr' '--build=i686-pc-linux-gnu' '--host=i686-pc-linux-gnu' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--datadir=/usr/share' '--sysconfdir=/etc' '--localstatedir=/var/lib' '--program-suffix=-emacs-23' '--infodir=/usr/share/info/emacs-23' '--with-sound' '--with-x' '--without-toolkit-scroll-bars' '--with-gif' '--with-jpeg' '--with-png' '--with-rsvg' '--with-tiff' '--with-xpm' '--with-xft' '--without-libotf' '--without-m17n-flt' '--with-x-toolkit=gtk' '--without-hesiod' '--without-kerberos' '--without-kerberos5' '--with-gpm' '--with-dbus' 'build_alias=i686-pc-linux-gnu' 'host_alias=i686-pc-linux-gnu' 'CFLAGS=-march=i686 -pipe -O2' 'LDFLAGS=-Wl,-O1''
Important settings:
value of $LC_ALL: fr_FR.UTF-8
value of $LC_COLLATE: nil
value of $LC_CTYPE: nil
value of $LC_MESSAGES: nil
value of $LC_MONETARY: nil
value of $LC_NUMERIC: nil
value of $LC_TIME: nil
value of $LANG: fr_FR.UTF-8
value of $XMODIFIERS: nil
locale-coding-system: utf-8-unix
default-enable-multibyte-characters: t
Major mode: Lisp Interaction
Minor modes in effect:
eldoc-mode: t
icomplete-mode: t
icicle-mode: t
delete-selection-mode: t
minibuffer-depth-indicate-mode: t
auto-image-file-mode: t
shell-dirtrack-mode: t
partial-completion-mode: t
show-paren-mode: t
display-battery-mode: t
display-time-mode: t
diff-auto-refine-mode: t
outline-minor-mode: t
recentf-mode: t
savehist-mode: t
desktop-save-mode: t
tooltip-mode: t
mouse-wheel-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
global-auto-composition-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
line-number-mode: t
transient-mark-mode: t
Recent input:
M-x M-p <return> <f11> a <down> <return> <up> <up>
C-SPC C-n C-n C-w <up> M-e C-h e <f11> s c M-> <up>
<up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
<up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
<up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
<up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
<up> <up> <up> <up> <up> <up> <up> <up> C-SPC C-n C-n
C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
C-n C-n C-n C-n C-n C-n C-x r s a C-g M-x r e p o r
t - e m a c s - b u <tab> <return>
Recent messages:
Type C-x 4 C-o RET to restore the other window, C-M-v to scroll help. [2 times]
Parsing BBDB... (frobnicating...done)
Loading /home/thierry/.emacs.d/yaoddmuse-cache.el (source)...done
Mark set
nil
Auto-saving...done
Mark set [2 times]
Quit
Computing completion candidates...
--
A + Thierry Volpiatto
Location: Saint-Cyr-Sur-Mer - France
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:bug#4427; Package emacs.
(Mon, 14 Sep 2009 13:00:04 GMT) Full text and rfc822 format available.Thierry Volpiatto <thierry.volpiatto <at> gmail.com>:Emacs Bugs <bug-gnu-emacs <at> gnu.org>.
(Mon, 14 Sep 2009 13:00:04 GMT) Full text and rfc822 format available.Message #10 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com> To: bug-gnu-emacs <at> gnu.org Subject: Re: bug#4427: 23.1; defun* don't work when compiled. Date: Mon, 14 Sep 2009 14:29:15 +0200
Complete information on this bug (if it is one).
Of course when this function is defined as macro, and
(eval-when-compile (require 'cl)) is used, the code is evaluated by the
byte-compiler and things work as expected.
But i wonder why the other "defun*" with &key that are in traverselisp
works and specially this function doesn't work.
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:
> Please write in English if possible, because the Emacs maintainers
> usually do not have translators to read other languages for them.
>
> Your bug report will be posted to the bug-gnu-emacs <at> gnu.org mailing list,
> and to the gnu.emacs.bug news group.
>
> Please describe exactly what actions triggered the bug
> and the precise symptoms of the bug:
>
> Hi all,
>
> In traverselisp.el, i use cl stuff with
> (eval-when-compile (require 'cl)) at start of file.
> I have functions that are like:
> (defun* foo (&key a b)...
>
> They all work fine after compiling file.
>
> However, i have one new function that don't work when compiling file but
> work as normal when loading the .el file, or evaluate the function with
> C-M x.
>
> I wonder why.
> It seem that variables coming from key arg and evaluated in a cond clause
> don't work when compiled and evaluated from compiled file (.elc).
>
> Here is the output of:
>
> (symbol-function 'traverse-auto-document-lisp-buffer)
> After loading only .elc file.
>
> #[(&rest --cl-rest--) "\306>A@.\307>A@..\2038.@\310>\203!.AA\211.\202.\203Y.\344
> .C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \360=\203\222.\354\355.C!!\204\345.
> \203\210.\344
> .C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \361=\203\270.
> \203\256.\344
> .C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345. \362=\203\336.
> \203\324.\344
> .C\"\203\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210\202\345.\356.C\357Qc\210+.?A\211.?\204... \312\207" [--cl-rest-- type prefix --cl-keys-- boundary-regexp regexp :type :prefix (:type :prefix :allow-other-keys) :allow-other-keys nil error ...] 9 ("/home/thierry/elisp/traverselisp.elc" . 45818)]
>
> Here is the same after evaluation of .el file or function with C-M x:
>
> (lambda (&rest --cl-rest--) "Not documented
>
> (fn &key TYPE PREFIX)" (let* ((type ...) (prefix ...)) (let (...) (while --cl-keys-- ...)) (block traverse-auto-document-lisp-buffer (let* ... ... ... ... ... ...))))
>
> So here it is normal and the function work as intended.
> When using the function from .elc file, i have no error, the function
> just return nil, even with debug-on-error turned on.
>
> Here the function:
>
> ,----
> | (defun* traverse-auto-document-lisp-buffer (&key type prefix)
> | (let* ((boundary-regexp "^;;=*LIMIT.*")
> | (regexp (case type
> | ('nested "^ +\(def\\(un\\|subst\\|advice\\)")
> | ('command "\(def\\(un\\|subst\\)")
> | ('internal-variable "\(defvar")
> | ('user-variable "\(defcustom")
> | ('faces "\(defface")
> | ('function "\(def\\(un\\|subst\\|advice\\)")
> | (t (error "Unknow type"))))
> | (fn-list (traverse-find-readlines
> | (current-buffer)
> | regexp
> | :insert-fn 'buffer))
> | beg end)
> | (insert "\n") (setq beg (point))
> | (save-excursion (when (re-search-forward boundary-regexp)
> | (forward-line -1) (setq end (point))))
> | (delete-region beg end)
> | (dolist (i fn-list)
> | (let* ((elm (cadr i))
> | (elm-mod (replace-regexp-in-string regexp "" elm))
> | (elm-fin (replace-regexp-in-string "\(\\|\)" ""(car (split-string elm-mod)))))
> | (cond ((eq type 'command)
> | (when (commandp (intern elm-fin))
> | (if prefix
> | (when (string-match prefix elm-fin)
> | (insert (concat ";; \`" elm-fin "\'\n")))
> | (insert (concat ";; \`" elm-fin "\'\n")))))
> | ((eq type 'function)
> | (when (not (commandp (intern elm-fin)))
> | (if prefix
> | (when (string-match prefix elm-fin)
> | (insert (concat ";; \`" elm-fin "\'\n")))
> | (insert (concat ";; \`" elm-fin "\'\n")))))
> | ((eq type 'internal-variable)
> | (if prefix
> | (when (string-match prefix elm-fin)
> | (insert (concat ";; \`" elm-fin "\'\n")))
> | (insert (concat ";; \`" elm-fin "\'\n"))))
> | ((eq type 'nested)
> | (if prefix
> | (when (string-match prefix elm-fin)
> | (insert (concat ";; \`" elm-fin "\'\n")))
> | (insert (concat ";; \`" elm-fin "\'\n"))))
> | (t
> | (insert (concat ";; \`" elm-fin "\'\n"))))))))
> `----
>
> If Emacs crashed, and you have the Emacs process in the gdb debugger,
> please include the output from the following gdb commands:
> `bt full' and `xbacktrace'.
> If you would like to further debug the crash, please read the file
> /usr/share/emacs/23.1/etc/DEBUG for instructions.
>
>
> In GNU Emacs 23.1.1 (i686-pc-linux-gnu, GTK+ Version 2.16.5)
> of 2009-07-31 on tux
> Windowing system distributor `The X.Org Foundation', version 11.0.10503000
> configured using `configure '--prefix=/usr' '--build=i686-pc-linux-gnu' '--host=i686-pc-linux-gnu' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--datadir=/usr/share' '--sysconfdir=/etc' '--localstatedir=/var/lib' '--program-suffix=-emacs-23' '--infodir=/usr/share/info/emacs-23' '--with-sound' '--with-x' '--without-toolkit-scroll-bars' '--with-gif' '--with-jpeg' '--with-png' '--with-rsvg' '--with-tiff' '--with-xpm' '--with-xft' '--without-libotf' '--without-m17n-flt' '--with-x-toolkit=gtk' '--without-hesiod' '--without-kerberos' '--without-kerberos5' '--with-gpm' '--with-dbus' 'build_alias=i686-pc-linux-gnu' 'host_alias=i686-pc-linux-gnu' 'CFLAGS=-march=i686 -pipe -O2' 'LDFLAGS=-Wl,-O1''
>
> Important settings:
> value of $LC_ALL: fr_FR.UTF-8
> value of $LC_COLLATE: nil
> value of $LC_CTYPE: nil
> value of $LC_MESSAGES: nil
> value of $LC_MONETARY: nil
> value of $LC_NUMERIC: nil
> value of $LC_TIME: nil
> value of $LANG: fr_FR.UTF-8
> value of $XMODIFIERS: nil
> locale-coding-system: utf-8-unix
> default-enable-multibyte-characters: t
>
> Major mode: Lisp Interaction
>
> Minor modes in effect:
> eldoc-mode: t
> icomplete-mode: t
> icicle-mode: t
> delete-selection-mode: t
> minibuffer-depth-indicate-mode: t
> auto-image-file-mode: t
> shell-dirtrack-mode: t
> partial-completion-mode: t
> show-paren-mode: t
> display-battery-mode: t
> display-time-mode: t
> diff-auto-refine-mode: t
> outline-minor-mode: t
> recentf-mode: t
> savehist-mode: t
> desktop-save-mode: t
> tooltip-mode: t
> mouse-wheel-mode: t
> file-name-shadow-mode: t
> global-font-lock-mode: t
> font-lock-mode: t
> global-auto-composition-mode: t
> auto-composition-mode: t
> auto-encryption-mode: t
> auto-compression-mode: t
> line-number-mode: t
> transient-mark-mode: t
>
> Recent input:
> M-x M-p <return> <f11> a <down> <return> <up> <up>
> C-SPC C-n C-n C-w <up> M-e C-h e <f11> s c M-> <up>
> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up> <up>
> <up> <up> <up> <up> <up> <up> <up> <up> C-SPC C-n C-n
> C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
> C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
> C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
> C-n C-n C-n C-n C-n C-n C-x r s a C-g M-x r e p o r
> t - e m a c s - b u <tab> <return>
>
> Recent messages:
> Type C-x 4 C-o RET to restore the other window, C-M-v to scroll help. [2 times]
>
> Parsing BBDB... (frobnicating...done)
> Loading /home/thierry/.emacs.d/yaoddmuse-cache.el (source)...done
> Mark set
> nil
> Auto-saving...done
> Mark set [2 times]
> Quit
> Computing completion candidates...
--
A + Thierry Volpiatto
Location: Saint-Cyr-Sur-Mer - France
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:bug#4427; Package emacs.
(Sat, 19 Sep 2009 00:05:15 GMT) Full text and rfc822 format available.Chong Yidong <cyd <at> stupidchicken.com>:Emacs Bugs <bug-gnu-emacs <at> gnu.org>.
(Sat, 19 Sep 2009 00:05:15 GMT) Full text and rfc822 format available.Message #15 received at 4427 <at> emacsbugs.donarmstrong.com (full text, mbox):
From: Chong Yidong <cyd <at> stupidchicken.com> To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com> Cc: 4427 <at> debbugs.gnu.org Subject: Re: 23.1; defun* don't work when compiled. Date: Fri, 18 Sep 2009 19:56:57 -0400
> In traverselisp.el, i use cl stuff with > (eval-when-compile (require 'cl)) at start of file. > I have functions that are like: > (defun* foo (&key a b)... > > They all work fine after compiling file. > > However, i have one new function that don't work when compiling file but > work as normal when loading the .el file, or evaluate the function with > C-M x. Could you try to make a small, self-contained test case? Your example is not small, and it is not self-contained (it calls traverse-find-readlines). This makes it difficult to debug.
Juanma Barranquero <lekktu <at> gmail.com>
to control <at> emacsbugs.donarmstrong.com.
(Thu, 22 Oct 2009 09:40:15 GMT) Full text and rfc822 format available.owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:bug#4427; Package emacs.
(Wed, 10 Mar 2010 20:55:02 GMT) Full text and rfc822 format available.Message #20 received at 4427 <at> debbugs.gnu.org (full text, mbox):
From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com> To: Chong Yidong <cyd <at> stupidchicken.com> Cc: 4427 <at> debbugs.gnu.org Subject: Re: 23.1; defun* don't work when compiled. Date: Wed, 10 Mar 2010 21:50:01 +0100
Hi, sorry for very late reply, but i couldn't make a small recipe reproducing that, however that lead to another bug with defsubst*. Here a file foo.el that contain this very useful code: (eval-when-compile (require 'cl)) (defsubst* compare-a-b (a b &key (test 'eq)) (funcall test a b)) 1) save the file 2) Go in emacs -Q 3) load the file (foo.el) ,---- | Loading /home/thierry/tmp/foo.el (source)... | Load error for /home/thierry/tmp/foo.el: | (void-function defsubst*) `---- That is the same if you (require 'cl) instead of (eval-when-compile...) Now compile (always in emacs -Q) the file and load it (foo.elc) That work as expected. Chong Yidong <cyd <at> stupidchicken.com> writes: >> In traverselisp.el, i use cl stuff with >> (eval-when-compile (require 'cl)) at start of file. >> I have functions that are like: >> (defun* foo (&key a b)... >> >> They all work fine after compiling file. >> >> However, i have one new function that don't work when compiling file but >> work as normal when loading the .el file, or evaluate the function with >> C-M x. > > Could you try to make a small, self-contained test case? Your example > is not small, and it is not self-contained (it calls > traverse-find-readlines). This makes it difficult to debug. > -- Thierry Volpiatto Gpg key: http://pgp.mit.edu/
Glenn Morris <rgm <at> gnu.org>:Thierry Volpiatto <thierry.volpiatto <at> gmail.com>:Message #25 received at 4427-done <at> debbugs.gnu.org (full text, mbox):
From: Glenn Morris <rgm <at> gnu.org> To: 4427-done <at> debbugs.gnu.org Subject: Re: bug#4427: 23.1; defun* don't work when compiled. Date: Thu, 11 Mar 2010 22:19:54 -0500
Thierry Volpiatto wrote: > | Loading /home/thierry/tmp/foo.el (source)... > | Load error for /home/thierry/tmp/foo.el: > | (void-function defsubst*) Fixed in emacs-23 branch by adding an autoload cookie for defsubst*.
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:bug#4427; Package emacs.
(Fri, 12 Mar 2010 07:12:02 GMT) Full text and rfc822 format available.Message #28 received at submit <at> debbugs.gnu.org (full text, mbox):
From: Thierry Volpiatto <thierry.volpiatto <at> gmail.com> To: bug-gnu-emacs <at> gnu.org Subject: Re: bug#4427: 23.1; defun* don't work when compiled. Date: Fri, 12 Mar 2010 08:07:02 +0100
Glenn Morris <rgm <at> gnu.org> writes: > Thierry Volpiatto wrote: > >> | Loading /home/thierry/tmp/foo.el (source)... >> | Load error for /home/thierry/tmp/foo.el: >> | (void-function defsubst*) > > Fixed in emacs-23 branch by adding an autoload cookie for defsubst*. Nice, thanks. -- Thierry Volpiatto Gpg key: http://pgp.mit.edu/
Debbugs Internal Request <help-debbugs <at> gnu.org>
to internal_control <at> debbugs.gnu.org.
(Fri, 09 Apr 2010 11:24:03 GMT) Full text and rfc822 format available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.