GNU bug report logs - #30707
describe-variable misses linking linkable changed items

Previous Next

Package: emacs;

Reported by: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>

Date: Mon, 5 Mar 2018 02:59:01 UTC

Severity: wishlist

Tags: wontfix

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 30707 in the body.
You can then email your comments to 30707 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#30707; Package emacs. (Mon, 05 Mar 2018 02:59:01 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. (Mon, 05 Mar 2018 02:59:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
To: bug-gnu-emacs <at> gnu.org
Subject: describe-variable misses linking linkable changed items
Date: Mon, 05 Mar 2018 10:17:57 +0800
I do
(describe-variable (quote browse-url-browser-function))
and see in *Help*:

   browse-url-browser-function is a variable defined in ‘browse-url.el’.
   Its value is ‘browse-url-chromium’
   Original value was
   browse-url-default-browser

The problem is browse-url-default-browser should be a blue link, but was
not detected as linkable.

So the user has to do
(describe-function (quote browse-url-default-browser))
to learn about it, instead of just being able to click it!

See, it really exists:
browse-url-default-browser is a compiled Lisp function in
‘browse-url.el’.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#30707; Package emacs. (Sun, 14 Jul 2019 14:29:02 GMT) Full text and rfc822 format available.

Message #8 received at 30707 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Cc: 30707 <at> debbugs.gnu.org
Subject: Re: bug#30707: describe-variable misses linking linkable changed items
Date: Sun, 14 Jul 2019 16:28:36 +0200
積丹尼 Dan Jacobson <jidanni <at> jidanni.org> writes:

> I do
> (describe-variable (quote browse-url-browser-function))
> and see in *Help*:
>
>    browse-url-browser-function is a variable defined in ‘browse-url.el’.
>    Its value is ‘browse-url-chromium’
>    Original value was
>    browse-url-default-browser
>
> The problem is browse-url-default-browser should be a blue link, but was
> not detected as linkable.
>
> So the user has to do
> (describe-function (quote browse-url-default-browser))
> to learn about it, instead of just being able to click it!

This sounds reasonable, but I don't think it is.  :-)
`browse-url-default-browser' is just a symbol that that variable had as
a value.  Yes, it's a symbol that refers to a function, but in general,
the doc machinery doesn't know that that's how it's going to be used; it
might be a total coincidence.  (Especially with shorter symbols.)

So I'm closing this bug report.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) wontfix. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Sun, 14 Jul 2019 14:29:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 30707 <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. (Sun, 14 Jul 2019 14:29:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#30707; Package emacs. (Sun, 14 Jul 2019 14:57:01 GMT) Full text and rfc822 format available.

Message #15 received at 30707 <at> debbugs.gnu.org (full text, mbox):

From: Noam Postavsky <npostavs <at> gmail.com>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 30707 <at> debbugs.gnu.org,
 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Subject: Re: bug#30707: describe-variable misses linking linkable changed items
Date: Sun, 14 Jul 2019 10:56:15 -0400
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> 積丹尼 Dan Jacobson <jidanni <at> jidanni.org> writes:
>
>>    browse-url-browser-function is a variable defined in ‘browse-url.el’.
>>    Its value is ‘browse-url-chromium’

>> The problem is browse-url-default-browser should be a blue link, but was
>> not detected as linkable.

> This sounds reasonable, but I don't think it is.  :-)
> `browse-url-default-browser' is just a symbol that that variable had as
> a value.  Yes, it's a symbol that refers to a function, but in general,
> the doc machinery doesn't know that that's how it's going to be used; it
> might be a total coincidence.  (Especially with shorter symbols.)

Even if it is just a coincidence, would it hurt to linkify it?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#30707; Package emacs. (Sun, 14 Jul 2019 15:04:02 GMT) Full text and rfc822 format available.

Message #18 received at 30707 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Noam Postavsky <npostavs <at> gmail.com>
Cc: 30707 <at> debbugs.gnu.org,
 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Subject: Re: bug#30707: describe-variable misses linking linkable changed items
Date: Sun, 14 Jul 2019 17:03:45 +0200
Noam Postavsky <npostavs <at> gmail.com> writes:

> Even if it is just a coincidence, would it hurt to linkify it?

Yes, I think so.  It is confusing if you see a link, hit it, and it
takes you to someplace completely irrelevant.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 12 Aug 2019 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 252 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.