GNU bug report logs -
#46731
Clicking on filename in *Help* now just leaves us at the top of the file
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 46731 in the body.
You can then email your comments to 46731 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#46731
; Package
emacs
.
(Wed, 24 Feb 2021 00:21:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 24 Feb 2021 00:21:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
In the *Help* buffer we see:
gnus-article-treat-non-ascii is an interactive Lisp function in
‘gnus-art.el’.
(gnus-article-treat-non-ascii &optional INTERACTIVE &rest ARGS)
Translate many Unicode characters into their ASCII equivalents.
OK, we press RETURN on that glowing filename, and instead of whisking us
to the location of the function in that file, we are simply dropped off
at the beginning of the file, "and then our taxi speeds away, leaving
us to hunt for the address ourselves."
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#46731
; Package
emacs
.
(Wed, 24 Feb 2021 16:34:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 46731 <at> debbugs.gnu.org (full text, mbox):
積丹尼 Dan Jacobson <jidanni <at> jidanni.org> writes:
> In the *Help* buffer we see:
>
> gnus-article-treat-non-ascii is an interactive Lisp function in
> ‘gnus-art.el’.
>
> (gnus-article-treat-non-ascii &optional INTERACTIVE &rest ARGS)
>
> Translate many Unicode characters into their ASCII equivalents.
>
> OK, we press RETURN on that glowing filename, and instead of whisking us
> to the location of the function in that file, we are simply dropped off
> at the beginning of the file, "and then our taxi speeds away, leaving
> us to hunt for the address ourselves."
Works for me in Emacs 28. Closing.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
bug closed, send any further explanations to
46731 <at> debbugs.gnu.org and 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Wed, 24 Feb 2021 16:34:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#46731
; Package
emacs
.
(Wed, 24 Feb 2021 21:00:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 46731 <at> debbugs.gnu.org (full text, mbox):
On Wed, 24 Feb 2021 17:33:23 +0100 Lars Ingebrigtsen <larsi <at> gnus.org> wrote:
> 積丹尼 Dan Jacobson <jidanni <at> jidanni.org> writes:
>
>> In the *Help* buffer we see:
>>
>> gnus-article-treat-non-ascii is an interactive Lisp function in
>> `gnus-art.el'.
>>
>> (gnus-article-treat-non-ascii &optional INTERACTIVE &rest ARGS)
>>
>> Translate many Unicode characters into their ASCII equivalents.
>>
>> OK, we press RETURN on that glowing filename, and instead of whisking us
>> to the location of the function in that file, we are simply dropped off
>> at the beginning of the file, "and then our taxi speeds away, leaving
>> us to hunt for the address ourselves."
>
> Works for me in Emacs 28. Closing.
Does it really work for you? Grepping the lisp/gnus directory for
gnus-article-treat-non-ascii finds only these:
./gnus-sum.el:2218: "U" gnus-article-treat-non-ascii
./gnus-sum.el:2543: ["Non-ASCII" gnus-article-treat-non-ascii t]
There is a defun article-treat-non-ascii and `C-h f
article-treat-non-ascii' contains a link to that, but `C-h f
gnus-article-treat-non-ascii' does not. I guess that's because of this:
(eval-and-compile
(mapc
(lambda (func)
(let (afunc gfunc)
(if (consp func)
(setq afunc (car func)
gfunc (cdr func))
(setq afunc func
gfunc (intern (format "gnus-%s" func))))
(defalias gfunc
(when (fboundp afunc)
`(lambda (&optional interactive &rest args)
,(documentation afunc t)
(interactive (list t))
(with-current-buffer gnus-article-buffer
(if interactive
(call-interactively ',afunc)
(apply #',afunc args))))))))
'(article-hide-headers
[...]
article-treat-non-ascii
article-normalize-headers)))
Or has there been a recent change that makes the link in the *Help*
buffer displayed by `C-h f gnus-article-treat-non-ascii' actually go to
the defun of article-treat-non-ascii?
Steve Berman
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#46731
; Package
emacs
.
(Wed, 24 Feb 2021 21:05:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 46731 <at> debbugs.gnu.org (full text, mbox):
Stephen Berman <stephen.berman <at> gmx.net> writes:
> Or has there been a recent change that makes the link in the *Help*
> buffer displayed by `C-h f gnus-article-treat-non-ascii' actually go to
> the defun of article-treat-non-ascii?
Hitting the link in Emacs 28 takes me to the place where the function is
defined, which is the mapc thing.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#46731
; Package
emacs
.
(Wed, 24 Feb 2021 21:59:01 GMT)
Full text and
rfc822 format available.
Message #19 received at 46731 <at> debbugs.gnu.org (full text, mbox):
On Wed, 24 Feb 2021 22:04:10 +0100 Lars Ingebrigtsen <larsi <at> gnus.org> wrote:
> Stephen Berman <stephen.berman <at> gmx.net> writes:
>
>> Or has there been a recent change that makes the link in the *Help*
>> buffer displayed by `C-h f gnus-article-treat-non-ascii' actually go to
>> the defun of article-treat-non-ascii?
>
> Hitting the link in Emacs 28 takes me to the place where the function is
> defined, which is the mapc thing.
That doesn't happen in my January 29 build. I guess it's high time I
update my Emacs master branch!
Steve Berman
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 25 Mar 2021 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 87 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.