* bug#70893: parts of apropos output not linked
@ 2024-05-12 12:04 Dan Jacobson
2024-05-12 12:43 ` Eli Zaretskii
0 siblings, 1 reply; 6+ messages in thread
From: Dan Jacobson @ 2024-05-12 12:04 UTC (permalink / raw)
To: 70893
(apropos '("frame") nil)
Then the user sees
Creating Frames
Fit Frame to Image
Frame Parameters
Frame Parameters-5
Frames
Goto Frame...
Man-frame-parameters
but there is nothing the user can do with them.
There are not linked to where they were retrieved from.
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#70893: parts of apropos output not linked
2024-05-12 12:04 bug#70893: parts of apropos output not linked Dan Jacobson
@ 2024-05-12 12:43 ` Eli Zaretskii
2024-05-12 12:58 ` Dan Jacobson
0 siblings, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2024-05-12 12:43 UTC (permalink / raw)
To: Dan Jacobson; +Cc: 70893
> From: Dan Jacobson <jidanni@jidanni.org>
> Date: Sun, 12 May 2024 20:04:32 +0800
>
> (apropos '("frame") nil)
>
> Then the user sees
>
> Creating Frames
> Fit Frame to Image
> Frame Parameters
> Frame Parameters-5
> Frames
> Goto Frame...
> Man-frame-parameters
>
> but there is nothing the user can do with them.
>
> There are not linked to where they were retrieved from.
I cannot reproduce this. Is this in "emacs -Q"?
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#70893: parts of apropos output not linked
2024-05-12 12:43 ` Eli Zaretskii
@ 2024-05-12 12:58 ` Dan Jacobson
2024-05-12 14:54 ` Eli Zaretskii
0 siblings, 1 reply; 6+ messages in thread
From: Dan Jacobson @ 2024-05-12 12:58 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 70893
On Sun, May 12, 2024 at 03:43:39PM +0300, Eli Zaretskii wrote:
> I cannot reproduce this. Is this in "emacs -Q"?
You're right. I'm sorry.
The bug is:
(describe-variable 'apropos-do-all) should mention that setting
apropos-do-all to t will lead to including items in apropos output,
that when clicked upon, will show e.g.,
apropos-symbol-button-display-help: There is nothing to follow for ‘Creating Frames’
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#70893: parts of apropos output not linked
2024-05-12 12:58 ` Dan Jacobson
@ 2024-05-12 14:54 ` Eli Zaretskii
2024-05-12 15:39 ` Dan Jacobson
0 siblings, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2024-05-12 14:54 UTC (permalink / raw)
To: Dan Jacobson; +Cc: 70893
> Date: Sun, 12 May 2024 20:58:13 +0800
> From: Dan Jacobson <jidanni@jidanni.org>
> Cc: 70893@debbugs.gnu.org
>
> On Sun, May 12, 2024 at 03:43:39PM +0300, Eli Zaretskii wrote:
> > I cannot reproduce this. Is this in "emacs -Q"?
>
> You're right. I'm sorry.
> The bug is:
> (describe-variable 'apropos-do-all) should mention that setting
> apropos-do-all to t will lead to including items in apropos output,
> that when clicked upon, will show e.g.,
> apropos-symbol-button-display-help: There is nothing to follow for ‘Creating Frames’
I set apropos-do-all to t before running 'apropos', and I still cannot
reproduce. I see none of the items you list.
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#70893: parts of apropos output not linked
2024-05-12 14:54 ` Eli Zaretskii
@ 2024-05-12 15:39 ` Dan Jacobson
2024-05-12 15:49 ` Eli Zaretskii
0 siblings, 1 reply; 6+ messages in thread
From: Dan Jacobson @ 2024-05-12 15:39 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 70893
On Sun, May 12, 2024 at 05:54:19PM +0300, Eli Zaretskii wrote:
> I set apropos-do-all to t before running 'apropos', and I still cannot
> reproduce. I see none of the items you list.
I see. Here's a pristine test. Sorry.
$ emacs -Q --eval '(setq apropos-do-all t)' --eval '(apropos "frame")'
Then put the cursor on "all-frames" and hit RET. That will give:
apropos-symbol-button-display-help: There is nothing to follow for ...
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#70893: parts of apropos output not linked
2024-05-12 15:39 ` Dan Jacobson
@ 2024-05-12 15:49 ` Eli Zaretskii
0 siblings, 0 replies; 6+ messages in thread
From: Eli Zaretskii @ 2024-05-12 15:49 UTC (permalink / raw)
To: Dan Jacobson; +Cc: 70893
> Date: Sun, 12 May 2024 23:39:37 +0800
> From: Dan Jacobson <jidanni@jidanni.org>
> Cc: 70893@debbugs.gnu.org
>
> On Sun, May 12, 2024 at 05:54:19PM +0300, Eli Zaretskii wrote:
> > I set apropos-do-all to t before running 'apropos', and I still cannot
> > reproduce. I see none of the items you list.
>
> I see. Here's a pristine test. Sorry.
>
> $ emacs -Q --eval '(setq apropos-do-all t)' --eval '(apropos "frame")'
> Then put the cursor on "all-frames" and hit RET. That will give:
> apropos-symbol-button-display-help: There is nothing to follow for ...
OK, I see it now. Not sure why this is a bug (after all, the message
you get is clear and speaks for itself), but will try to look into
this, time permitting.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-05-12 15:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-12 12:04 bug#70893: parts of apropos output not linked Dan Jacobson
2024-05-12 12:43 ` Eli Zaretskii
2024-05-12 12:58 ` Dan Jacobson
2024-05-12 14:54 ` Eli Zaretskii
2024-05-12 15:39 ` Dan Jacobson
2024-05-12 15:49 ` Eli Zaretskii
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.