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

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

bug#947: marked as done (Recursive load of ido after unload-feature and


From: Emacs bug Tracking System
Subject: bug#947: marked as done (Recursive load of ido after unload-feature and reload)
Date: Wed, 10 Sep 2008 23:20:05 -0700

Your message dated Thu, 11 Sep 2008 02:11:29 -0400
with message-id <ga7i9jgqjy.fsf@fencepost.gnu.org>
and subject line Re: bug#947: Recursive load of ido after unload-feature and 
reload
has caused the Emacs bug report #947,
regarding Recursive load of ido after unload-feature and reload
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
947: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=947
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems
--- Begin Message --- Subject: Recursive load of ido after unload-feature and reload Date: Tue, 9 Sep 2008 16:29:40 +0200
Package: emacs
Severity: minor

emacs -Q -D
M-x ido-mode <RET>
M-x unload-feature <RET> ido <RET>
M-x ido-mode <RET>

Recursive load: "c:/emacs/trunk/lisp/ido.elc",
"c:/emacs/trunk/lisp/ido.elc", "c:/emacs/trunk/lisp/ido.elc",
"c:/emacs/trunk/lisp/ido.elc", "c:/emacs/trunk/lisp/ido.elc"

The problem is that after unloading ido, the variable ido-mode is
void, and calling ido-mode without an argument runs this code:

  (setq ido-mode
        (cond
         ((null arg) (if ido-mode nil 'both))
         ; ...

and setting the variable ido-mode runs this code:

  :set #'(lambda (symbol value)
           (ido-mode value))

so there's really a recursion.

I can think of several crude workarounds, but they aren't pretty and
I'm not sure they will play fair with customize.



--- End Message ---
--- Begin Message --- Subject: Re: bug#947: Recursive load of ido after unload-feature and reload Date: Thu, 11 Sep 2008 02:11:29 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
"Juanma Barranquero" wrote:

> Yes, it apparently fixes the problem.

Installed.

>> so long as ido-mode is not enabled by default?

> What do you mean, "not enabled by default"?

So long as ido-mode the variable has a default value of nil, which I
imagine will always be true.


--- End Message ---

reply via email to

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