GNU bug report logs -
#59293
28.1.90; Erroneous footnote link in Org info manual
Previous Next
Reported by: Ihor Radchenko <yantar92 <at> posteo.net>
Date: Wed, 16 Nov 2022 01:23:01 UTC
Severity: normal
Found in version 28.1.90
Done: Eli Zaretskii <eliz <at> gnu.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 59293 in the body.
You can then email your comments to 59293 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#59293
; Package
emacs
.
(Wed, 16 Nov 2022 01:23:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ihor Radchenko <yantar92 <at> posteo.net>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 16 Nov 2022 01:23:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi,
I am forwarding this from Org mailing list discussion about Org manual.
https://orgmode.org/list/87pmdqfao4.fsf <at> localhost
In 16.5 Evaluating Code Blocks section of Org info manual, there is an
example code block
#+NAME: random
#+BEGIN_SRC R :cache yes
runif(1)
#+END_SRC
This code block is represented like the following in the texinfo Org
manual source:
@example
#+NAME: random
#+BEGIN_SRC R :cache yes
runif(1)
#+END_SRC
...
@end example
Note the (1). It is unexpectedly shown as a footnote reference and one
can click on (1). This only happens in the info manual. Not in html.
I have checked
https://www.gnu.org/software/texinfo/manual/texinfo/html_node/_0040example.html
and I do not see anything wrong in the above texinfo source.
I am also not an expert in texinfo.
Could someone more experienced with texinfo check if the observed is
something to be fixed on Org side, on Texinfo side, or maybe on
Info-mode side?
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#59293
; Package
emacs
.
(Wed, 16 Nov 2022 12:43:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 59293 <at> debbugs.gnu.org (full text, mbox):
> From: Ihor Radchenko <yantar92 <at> posteo.net>
> Date: Wed, 16 Nov 2022 01:22:28 +0000
>
> In 16.5 Evaluating Code Blocks section of Org info manual, there is an
> example code block
>
> #+NAME: random
> #+BEGIN_SRC R :cache yes
> runif(1)
> #+END_SRC
>
> This code block is represented like the following in the texinfo Org
> manual source:
>
> @example
> #+NAME: random
> #+BEGIN_SRC R :cache yes
> runif(1)
> #+END_SRC
>
> ...
> @end example
>
> Note the (1). It is unexpectedly shown as a footnote reference and one
> can click on (1). This only happens in the info manual. Not in html.
>
> I have checked
> https://www.gnu.org/software/texinfo/manual/texinfo/html_node/_0040example.html
>
> and I do not see anything wrong in the above texinfo source.
>
> I am also not an expert in texinfo.
>
> Could someone more experienced with texinfo check if the observed is
> something to be fixed on Org side, on Texinfo side, or maybe on
> Info-mode side?
It's a bug in info.el: it fontifies the footnote references, but the
detection of footnote cannot distinguish between "(1)" that is a
reference to a footnote and "(1)" that just stands for itself.
My suggestion is to modify the example in the manual to avoid the
false match, for example use "runif(3)" if possible. Alternatively,
remove the real footnotes and make them notes in parentheses. Or
just live with the problem...
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#59293
; Package
emacs
.
(Thu, 17 Nov 2022 05:45:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 59293 <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> writes:
>> Could someone more experienced with texinfo check if the observed is
>> something to be fixed on Org side, on Texinfo side, or maybe on
>> Info-mode side?
>
> It's a bug in info.el: it fontifies the footnote references, but the
> detection of footnote cannot distinguish between "(1)" that is a
> reference to a footnote and "(1)" that just stands for itself.
Thanks for clarification. Is it something known but difficult to fix?
> My suggestion is to modify the example in the manual to avoid the
> false match, for example use "runif(3)" if possible. Alternatively,
> remove the real footnotes and make them notes in parentheses. Or
> just live with the problem...
I went with runif(+1).
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=79c64d8c3ac66e13a333a4cbc8ba15e242bc01fb
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
Reply sent
to
Eli Zaretskii <eliz <at> gnu.org>
:
You have taken responsibility.
(Thu, 17 Nov 2022 07:12:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Ihor Radchenko <yantar92 <at> posteo.net>
:
bug acknowledged by developer.
(Thu, 17 Nov 2022 07:12:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 59293-done <at> debbugs.gnu.org (full text, mbox):
> From: Ihor Radchenko <yantar92 <at> posteo.net>
> Cc: 59293 <at> debbugs.gnu.org
> Date: Thu, 17 Nov 2022 05:45:16 +0000
>
> Eli Zaretskii <eliz <at> gnu.org> writes:
>
> > It's a bug in info.el: it fontifies the footnote references, but the
> > detection of footnote cannot distinguish between "(1)" that is a
> > reference to a footnote and "(1)" that just stands for itself.
>
> Thanks for clarification. Is it something known but difficult to fix?
AFAIU the code, it detects footnote references by looking for [0-9]+
in parentheses, then fontifies those of the references whose numbers
are smaller than the number of footnotes actually present in the node.
So, for example, if a node has 5 footnotes, "(6)" will not be
fontified, but each occurrence of "(4)" will be fontified.
The comment there says:
;; Don't fontify parenthesized numbers that cannot
;; possibly be one of this node's footnotes. This still
;; doesn't catch unrelated numbers that happen to be
;; small enough, but in that case they should use
;; "@footnotestyle separate" in the Texinfo sources.
> > My suggestion is to modify the example in the manual to avoid the
> > false match, for example use "runif(3)" if possible. Alternatively,
> > remove the real footnotes and make them notes in parentheses. Or
> > just live with the problem...
>
> I went with runif(+1).
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=79c64d8c3ac66e13a333a4cbc8ba15e242bc01fb
That's a good solution, thanks.
So I'm closing this bug report.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 15 Dec 2022 12:24:16 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 238 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.