* help doesn't buttonize some functions
@ 2021-08-27 3:41 Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 3:46 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 8:05 ` Stephen Berman
0 siblings, 2 replies; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-08-27 3:41 UTC (permalink / raw)
To: help-gnu-emacs
Eval this:
(defun test-fun ()
"`equal' isn't the same as `='. `+' doesn't work either." )
Then do
C-h f test-fun RET
and observe that while `equal' is a button, neither of `=' or
`+' is.
It is the same from C, see for example
C-h f eql RET
where `eq' and `eql' are buttonized, `=' isn't.
eql is defined in src/fns.c
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: help doesn't buttonize some functions
2021-08-27 3:41 help doesn't buttonize some functions Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-08-27 3:46 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 8:05 ` Stephen Berman
1 sibling, 0 replies; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-08-27 3:46 UTC (permalink / raw)
To: help-gnu-emacs
It is the same in ERC BTW, `=' isn't buttonized. Maybe some
regexp somewhere where functions that contain non-alphanums
aren't buttonized?
E.g., `string=' isn't buttonized, but `string-equal' is ...
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: help doesn't buttonize some functions
2021-08-27 3:41 help doesn't buttonize some functions Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 3:46 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-08-27 8:05 ` Stephen Berman
2021-08-27 8:13 ` Emanuel Berg via Users list for the GNU Emacs text editor
1 sibling, 1 reply; 5+ messages in thread
From: Stephen Berman @ 2021-08-27 8:05 UTC (permalink / raw)
To: help-gnu-emacs
On Fri, 27 Aug 2021 05:41:02 +0200 Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org> wrote:
> Eval this:
>
> (defun test-fun ()
> "`equal' isn't the same as `='. `+' doesn't work either." )
>
> Then do
>
> C-h f test-fun RET
>
> and observe that while `equal' is a button, neither of `=' or
> `+' is.
>
> It is the same from C, see for example
>
> C-h f eql RET
>
> where `eq' and `eql' are buttonized, `=' isn't.
>
> eql is defined in src/fns.c
This is true of Emacs 27 but in Emacs 28 `=' and `+' are buttonized in
*Help*.
Steve Berman
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: help doesn't buttonize some functions
2021-08-27 8:05 ` Stephen Berman
@ 2021-08-27 8:13 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 8:51 ` Emacs 28.1 (was: Re: help doesn't buttonize some functions) Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 1 reply; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-08-27 8:13 UTC (permalink / raw)
To: help-gnu-emacs
Stephen Berman wrote:
> This is true of Emacs 27 but in Emacs 28 `=' and `+' are
> buttonized in *Help*.
Not here which is
GNU Emacs 28.0.50 (build 3, x86_64-pc-linux-gnu, cairo
version 1.16.0) of 2021-08-02
Please use
C-u M-x emacs-version RET
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 5+ messages in thread
* Emacs 28.1 (was: Re: help doesn't buttonize some functions)
2021-08-27 8:13 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-08-27 8:51 ` Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 0 replies; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-08-27 8:51 UTC (permalink / raw)
To: help-gnu-emacs
> GNU Emacs 28.0.50 (build 3, x86_64-pc-linux-gnu, cairo
> version 1.16.0) of 2021-08-02
>
> Please use
>
> C-u M-x emacs-version RET
Yeah ... where/how did you get 28.1?
I did what I usually do and got same old 28.0.50.
From https://git.savannah.gnu.org/git/emacs.git
#! /bin/zsh
#
# this file:
# http://user.it.uu.se/~embe8573/conf/.zsh/install-emacs
# https://dataswamp.org/~incal/conf/.zsh/install-emacs
local EMACS_SRC=https://git.savannah.gnu.org/git/emacs.git
local EMACS_DIR=~/src
emacs-install-prepare () {
sudo apt-get -qq update
sudo apt-get install build-essential
sudo apt-get build-dep emacs
}
emacs-src-reset () {
cd $EMACS_DIR
git reset --hard
git clean -xdf
git pull $EMACS_SRC
}
alias emacs-reset-src=emacs-src-reset
emacs-src-get () {
cd $EMACS_DIR
git clone $EMACS_SRC
}
alias emacs-get-src=emacs-src-get
# autogen.sh
# configure --with-x-toolkit=no
# make
# sudo make install
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-08-27 8:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-27 3:41 help doesn't buttonize some functions Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 3:46 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 8:05 ` Stephen Berman
2021-08-27 8:13 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-27 8:51 ` Emacs 28.1 (was: Re: help doesn't buttonize some functions) Emanuel Berg via Users list for the GNU Emacs text editor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).