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

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

RE: mthesaur v synonyms


From: Drew Adams
Subject: RE: mthesaur v synonyms
Date: Fri, 10 Aug 2007 10:10:46 -0700

> > Yes. Please make sure you have the latest `icicle-mode.el'. When
> > `icicle-mode' is entered, this test is made:
> >
> > (when icicle-bind-top-level-commands-flag
> >   (define-key icicle-mode-map [f5] 'icicle-kmacro))
>
> In the one here :
>    http://www.emacswiki.org/cgi-bin/wiki/download/icicles-mode.el
> the code is:
>
>     (when (fboundp 'icicle-kmacro)
>       (define-key icicle-mode-map [f5] 'icicle-kmacro)) ; `f5' Emacs 22

No. This is the code:

(when icicle-bind-top-level-commands-flag
  ...
  (when (fboundp 'icicle-kmacro)
    (define-key icicle-mode-map [f5] 'icicle-kmacro))
  ...)

IOW, the binding is made only if _both_
`icicle-bind-top-level-commands-flag' is non-nil and `icicle-kmacro' is
defined (which it is, for Emacs 22).

If you customize `icicle-bind-top-level-commands-flag' to nil, f5 should not
be rebound. Again, if you find a bug, please report it, starting with
"emacs -Q", via `icicle-send-bug-report'. Thanks.






reply via email to

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