all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#65157: 30.0.50; Android port post-merge warnings?
@ 2023-08-08 19:36 Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-09  1:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 8+ messages in thread
From: Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-08 19:36 UTC (permalink / raw)
  To: 65157

At 72e24ed0316542184f40c05eda2bf7c77808ec0c with all default
configuration I get after

   make -j8 bootstrap

the following warnings:

[...]
./android.texi:320: warning: node `Android Windowing' is next for 
`Android Environment' in menu but not in sectioning
./android.texi:528: warning: node `Android Environment' is prev for 
`Android Windowing' in menu but not in sectioning
[...]
In end of data:
touch-screen.el:163:16: Warning: the function 
‘pixel-scroll-precision-scroll-up-page’ is not known to be defined.
touch-screen.el:162:18: Warning: the function 
‘pixel-scroll-precision-scroll-down-page’ is not known to be defined.
[...]

Pls let me know if you need more information on that ...





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-08 19:36 bug#65157: 30.0.50; Android port post-merge warnings? Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-09  1:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-09 13:07   ` Eli Zaretskii
  2023-08-09 18:58   ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 2 replies; 8+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-09  1:53 UTC (permalink / raw)
  To: Jens Schmidt; +Cc: 65157

Jens Schmidt <jschmidt4gnu@vodafonemail.de> writes:

> At 72e24ed0316542184f40c05eda2bf7c77808ec0c with all default
> configuration I get after
>
>   make -j8 bootstrap
>
> the following warnings:
>
> [...]
> ./android.texi:320: warning: node `Android Windowing' is next for
> `Android Environment' in menu but not in sectioning
> ./android.texi:528: warning: node `Android Environment' is prev for
> `Android Windowing' in menu but not in sectioning

I don't receive this warning here, nor can I locate any inconsistencies
between the menu and sectioning.  What version of Texinfo is that?

> In end of data:
> touch-screen.el:163:16: Warning: the function
> ‘pixel-scroll-precision-scroll-up-page’ is not known to be defined.
> touch-screen.el:162:18: Warning: the function
> ‘pixel-scroll-precision-scroll-down-page’ is not known to be defined.
> [...]

This should be fixed now.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-09  1:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-09 13:07   ` Eli Zaretskii
  2023-08-09 13:28     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-09 18:58   ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2023-08-09 13:07 UTC (permalink / raw)
  To: Po Lu; +Cc: 65157, jschmidt4gnu

> Cc: 65157@debbugs.gnu.org
> Date: Wed, 09 Aug 2023 09:53:13 +0800
> From:  Po Lu via "Bug reports for GNU Emacs,
>  the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
> 
> Jens Schmidt <jschmidt4gnu@vodafonemail.de> writes:
> 
> > ./android.texi:320: warning: node `Android Windowing' is next for
> > `Android Environment' in menu but not in sectioning
> > ./android.texi:528: warning: node `Android Environment' is prev for
> > `Android Windowing' in menu but not in sectioning
> 
> I don't receive this warning here, nor can I locate any inconsistencies
> between the menu and sectioning.

I see you used @section's without a @node.  Why did you do that?  It
is in general not recommended, as it makes it harder for the readers
to find those node-less sections.

I suggest to add @node's there.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-09 13:07   ` Eli Zaretskii
@ 2023-08-09 13:28     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-09 13:45       ` Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-09 13:28 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 65157, jschmidt4gnu

Eli Zaretskii <eliz@gnu.org> writes:

>> Cc: 65157@debbugs.gnu.org
>> Date: Wed, 09 Aug 2023 09:53:13 +0800
>> From:  Po Lu via "Bug reports for GNU Emacs,
>>  the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
>> 
>> Jens Schmidt <jschmidt4gnu@vodafonemail.de> writes:
>> 
>> > ./android.texi:320: warning: node `Android Windowing' is next for
>> > `Android Environment' in menu but not in sectioning
>> > ./android.texi:528: warning: node `Android Environment' is prev for
>> > `Android Windowing' in menu but not in sectioning
>> 
>> I don't receive this warning here, nor can I locate any inconsistencies
>> between the menu and sectioning.
>
> I see you used @section's without a @node.  Why did you do that?  It
> is in general not recommended, as it makes it harder for the readers
> to find those node-less sections.
>
> I suggest to add @node's there.

Thanks.  How about @subsection's?  The relative importance of the
contents of those node-less sections doesn't justify placement in
their own nodes, IMHO.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-09 13:28     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-09 13:45       ` Eli Zaretskii
  2023-08-10  0:37         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2023-08-09 13:45 UTC (permalink / raw)
  To: Po Lu; +Cc: 65157, jschmidt4gnu

> From: Po Lu <luangruo@yahoo.com>
> Cc: jschmidt4gnu@vodafonemail.de,  65157@debbugs.gnu.org
> Date: Wed, 09 Aug 2023 21:28:44 +0800
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> > I suggest to add @node's there.
> 
> Thanks.  How about @subsection's?  The relative importance of the
> contents of those node-less sections doesn't justify placement in
> their own nodes, IMHO.

Why do you need justification for adding @node's?  What is the
downside of having them.  The advantage is clear: easier navigation
with SPC and DEL.

If you don't need a @node, please ask yourself why you need a @section
of @subsection?

But if you are dead set on not adding @node's, please make those
@node-less @sections @unnumberedsec instead.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-09  1:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-09 13:07   ` Eli Zaretskii
@ 2023-08-09 18:58   ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 8+ messages in thread
From: Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-09 18:58 UTC (permalink / raw)
  To: Po Lu; +Cc: 65157

On 2023-08-09  03:53, Po Lu wrote:

>> ./android.texi:320: warning: node `Android Windowing' is next for
>> `Android Environment' in menu but not in sectioning
>> ./android.texi:528: warning: node `Android Environment' is prev for
>> `Android Windowing' in menu but not in sectioning
> 
> I don't receive this warning here, nor can I locate any inconsistencies
> between the menu and sectioning.  What version of Texinfo is that?

Not sure whether still relevant after Eli's remarks on @nodes vs
@sections, but I use

   [emacs-master]$ makeinfo --version
   texi2any (GNU texinfo) 6.7

   Copyright (C) 2017 Free Software Foundation, Inc.
   License GPLv3+: GNU GPL version 3 or later 
<http://gnu.org/licenses/gpl.html>
   This is free software: you are free to change and redistribute it.
   There is NO WARRANTY, to the extent permitted by law.






^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-09 13:45       ` Eli Zaretskii
@ 2023-08-10  0:37         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-08-11 19:23           ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 8+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-10  0:37 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 65157, jschmidt4gnu

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Po Lu <luangruo@yahoo.com>
>> Cc: jschmidt4gnu@vodafonemail.de,  65157@debbugs.gnu.org
>> Date: Wed, 09 Aug 2023 21:28:44 +0800
>> 
>> Eli Zaretskii <eliz@gnu.org> writes:
>> 
>> > I suggest to add @node's there.
>> 
>> Thanks.  How about @subsection's?  The relative importance of the
>> contents of those node-less sections doesn't justify placement in
>> their own nodes, IMHO.
>
> Why do you need justification for adding @node's?  What is the
> downside of having them.  The advantage is clear: easier navigation
> with SPC and DEL.
>
> If you don't need a @node, please ask yourself why you need a @section
> of @subsection?
>
> But if you are dead set on not adding @node's, please make those
> @node-less @sections @unnumberedsec instead.

Thanks.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#65157: 30.0.50; Android port post-merge warnings?
  2023-08-10  0:37         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-08-11 19:23           ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 0 replies; 8+ messages in thread
From: Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-08-11 19:23 UTC (permalink / raw)
  To: Po Lu, Eli Zaretskii; +Cc: 65157-done

On 2023-08-10  02:37, Po Lu wrote:

>> But if you are dead set on not adding @node's, please make those
>> @node-less @sections @unnumberedsec instead.
> 
> Thanks.

Seems to be resolved, thanks, closing this bug.






^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-08-11 19:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-08 19:36 bug#65157: 30.0.50; Android port post-merge warnings? Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-09  1:53 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-09 13:07   ` Eli Zaretskii
2023-08-09 13:28     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-09 13:45       ` Eli Zaretskii
2023-08-10  0:37         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-11 19:23           ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-08-09 18:58   ` Jens Schmidt via Bug reports for GNU Emacs, the Swiss army knife of text editors

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.