[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: new apropos feature in Emacs-22
From: |
Kim F. Storm |
Subject: |
Re: new apropos feature in Emacs-22 |
Date: |
Tue, 08 Nov 2005 13:48:28 +0100 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) |
Luc Teirlinck <address@hidden> writes:
> I grepped for `apropos' in the lisp directory. I now believe that
> making the default recognize even less regexps carries a risk of
> breaking some things, relatively close to a release. There were tons
> of complex matches and I do not have the time to try to understand all
> of them and see what would break them.
I grepped for apropos too, and I didn't find any "complex matches".
Most of the matches has nothing to do with apropos.el functionality.
There are some (clever) rules in gnus-art to make a hyperlink out
of e.g.
M-x apropos-documentation RET init file RET
but this will DTRT, as it takes the string between RET ... RET and
pass it to e.g. apropos-documentation which is exactly TRTD.
There is also this little snippet in wid-edit.el:
(if (and (fboundp symbol) (boundp symbol))
;; If there are two doc strings, give the user a way to pick one.
(apropos (concat "\\`" (regexp-quote string) "\\'"))
But this explicitly makes the arg. into a regexp.
The rest seems to be trivial, and will DTRT as is.
--
Kim F. Storm <address@hidden> http://www.cua.dk
- Re: new apropos feature in Emacs-22, (continued)
- Re: new apropos feature in Emacs-22, Luc Teirlinck, 2005/11/05
- Re: new apropos feature in Emacs-22, Richard M. Stallman, 2005/11/07
- RE: new apropos feature in Emacs-22, Drew Adams, 2005/11/07
- Re: new apropos feature in Emacs-22, Stefan Monnier, 2005/11/07
- RE: new apropos feature in Emacs-22, Drew Adams, 2005/11/07
- Re: new apropos feature in Emacs-22, Lennart Borgman, 2005/11/07
- Re: new apropos feature in Emacs-22, Eli Zaretskii, 2005/11/07
- RE: new apropos feature in Emacs-22, Drew Adams, 2005/11/07
- Re: new apropos feature in Emacs-22, Eli Zaretskii, 2005/11/07
- Re: new apropos feature in Emacs-22, Luc Teirlinck, 2005/11/07
- Re: new apropos feature in Emacs-22,
Kim F. Storm <=
- Re: new apropos feature in Emacs-22, Miles Bader, 2005/11/08
- Re: new apropos feature in Emacs-22, Lennart Borgman, 2005/11/08
- Re: new apropos feature in Emacs-22, Richard M. Stallman, 2005/11/11
- Re: new apropos feature in Emacs-22, Kim F. Storm, 2005/11/11
- Re: new apropos feature in Emacs-22, Miles Bader, 2005/11/11
- Re: new apropos feature in Emacs-22, Kim F. Storm, 2005/11/11
- Re: new apropos feature in Emacs-22, Richard M. Stallman, 2005/11/11
- Re: new apropos feature in Emacs-22, Luc Teirlinck, 2005/11/11
- Re: new apropos feature in Emacs-22, Richard M. Stallman, 2005/11/12
- Re: new apropos feature in Emacs-22, Luc Teirlinck, 2005/11/11