unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#73247: Move Android frame parameter documentation to elisp manual
@ 2024-09-14 12:39 Stefan Kangas
  2024-09-14 13:52 ` Eli Zaretskii
  2024-09-14 13:58 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 2 replies; 6+ messages in thread
From: Stefan Kangas @ 2024-09-14 12:39 UTC (permalink / raw)
  To: 73247; +Cc: Po Lu

Severity: wishlist

The only index entry we have for "frame parameters" in the emacs manual
is "frame parameters, android".  Since frame parameters are documented
in the elisp manual for other platforms, I think we should consider
moving this part from (info "(emacs) Android Windowing"):

>    Emacs only supports a limited subset of GUI features on Android; the
> limitations are as follows:
>
>    • Scroll bars are not supported, as they are close to useless on
>      Android devices.
>
>    • The ‘alpha’, ‘alpha-background’, ‘z-group’, ‘override-redirect’,
>      ‘mouse-color’, ‘title’, ‘wait-for-wm’, ‘sticky’, and ‘undecorated’
>      frame parameters (*note (elisp)Frame Parameters::) are unsupported.
>
>    • On Android 4.0 and earlier, the ‘fullscreen’ frame parameter is
>      always ‘maximized’ for top-level frames; on later versions of
>      Android, it can also be ‘fullscreen’.





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

* bug#73247: Move Android frame parameter documentation to elisp manual
  2024-09-14 12:39 bug#73247: Move Android frame parameter documentation to elisp manual Stefan Kangas
@ 2024-09-14 13:52 ` Eli Zaretskii
  2024-09-14 14:06   ` Stefan Kangas
  2024-09-14 13:58 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2024-09-14 13:52 UTC (permalink / raw)
  To: Stefan Kangas, luangruo; +Cc: 73247

> Cc: Po Lu <luangruo@yahoo.com>
> From: Stefan Kangas <stefankangas@gmail.com>
> Date: Sat, 14 Sep 2024 05:39:10 -0700
> 
> Severity: wishlist
> 
> The only index entry we have for "frame parameters" in the emacs manual
> is "frame parameters, android".  Since frame parameters are documented
> in the elisp manual for other platforms, I think we should consider
> moving this part from (info "(emacs) Android Windowing"):
> 
> >    Emacs only supports a limited subset of GUI features on Android; the
> > limitations are as follows:
> >
> >    • Scroll bars are not supported, as they are close to useless on
> >      Android devices.
> >
> >    • The ‘alpha’, ‘alpha-background’, ‘z-group’, ‘override-redirect’,
> >      ‘mouse-color’, ‘title’, ‘wait-for-wm’, ‘sticky’, and ‘undecorated’
> >      frame parameters (*note (elisp)Frame Parameters::) are unsupported.
> >
> >    • On Android 4.0 and earlier, the ‘fullscreen’ frame parameter is
> >      always ‘maximized’ for top-level frames; on later versions of
> >      Android, it can also be ‘fullscreen’.

Why is this in the user manual?  Frame parameters are Lisp-level
feature, and are fully documented in the ELisp manual.  Are there any
reasons not to move this there, as a separate subsection?





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

* bug#73247: Move Android frame parameter documentation to elisp manual
  2024-09-14 12:39 bug#73247: Move Android frame parameter documentation to elisp manual Stefan Kangas
  2024-09-14 13:52 ` Eli Zaretskii
@ 2024-09-14 13:58 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  1 sibling, 0 replies; 6+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-09-14 13:58 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 73247

Stefan Kangas <stefankangas@gmail.com> writes:

> Severity: wishlist
>
> The only index entry we have for "frame parameters" in the emacs manual
> is "frame parameters, android".  Since frame parameters are documented
> in the elisp manual for other platforms, I think we should consider
> moving this part from (info "(emacs) Android Windowing"):

As I see it, it would be more appropriate to insert an entry into the
index for (elisp)Frame Parameters.





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

* bug#73247: Move Android frame parameter documentation to elisp manual
  2024-09-14 13:52 ` Eli Zaretskii
@ 2024-09-14 14:06   ` Stefan Kangas
  2024-09-14 14:19     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kangas @ 2024-09-14 14:06 UTC (permalink / raw)
  To: Eli Zaretskii, luangruo; +Cc: 73247

Eli Zaretskii <eliz@gnu.org> writes:

> Why is this in the user manual?  Frame parameters are Lisp-level
> feature, and are fully documented in the ELisp manual.  Are there any
> reasons not to move this there, as a separate subsection?

That's my question, indeed.





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

* bug#73247: Move Android frame parameter documentation to elisp manual
  2024-09-14 14:06   ` Stefan Kangas
@ 2024-09-14 14:19     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-09-14 14:26       ` Eli Zaretskii
  0 siblings, 1 reply; 6+ messages in thread
From: Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-09-14 14:19 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: Eli Zaretskii, 73247

Stefan Kangas <stefankangas@gmail.com> writes:

> Eli Zaretskii <eliz@gnu.org> writes:
>
>> Why is this in the user manual?  Frame parameters are Lisp-level
>> feature, and are fully documented in the ELisp manual.  Are there any
>> reasons not to move this there, as a separate subsection?
>
> That's my question, indeed.

There's no Android appendix in the Lisp reference manual, and in any
event, it appears to be established practice to place window-system
specific Lisp facilities in the appendix in the Emacs manual for the
window system in question, of which (emacs)Mac / GNUstep Events is one
example.





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

* bug#73247: Move Android frame parameter documentation to elisp manual
  2024-09-14 14:19     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-09-14 14:26       ` Eli Zaretskii
  0 siblings, 0 replies; 6+ messages in thread
From: Eli Zaretskii @ 2024-09-14 14:26 UTC (permalink / raw)
  To: Po Lu; +Cc: 73247, stefankangas

> From: Po Lu <luangruo@yahoo.com>
> Cc: Eli Zaretskii <eliz@gnu.org>,  73247@debbugs.gnu.org
> Date: Sat, 14 Sep 2024 22:19:01 +0800
> 
> Stefan Kangas <stefankangas@gmail.com> writes:
> 
> > Eli Zaretskii <eliz@gnu.org> writes:
> >
> >> Why is this in the user manual?  Frame parameters are Lisp-level
> >> feature, and are fully documented in the ELisp manual.  Are there any
> >> reasons not to move this there, as a separate subsection?
> >
> > That's my question, indeed.
> 
> There's no Android appendix in the Lisp reference manual, and in any
> event, it appears to be established practice to place window-system
> specific Lisp facilities in the appendix in the Emacs manual for the
> window system in question, of which (emacs)Mac / GNUstep Events is one
> example.

You don't need an appendix, you can put this in the body of the ELisp
manual.  The text seems short enough, so maybe we don't even need a
separate subsection.  There's nothing wrong in principle with having
window-system specific text in the main manual.





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

end of thread, other threads:[~2024-09-14 14:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-14 12:39 bug#73247: Move Android frame parameter documentation to elisp manual Stefan Kangas
2024-09-14 13:52 ` Eli Zaretskii
2024-09-14 14:06   ` Stefan Kangas
2024-09-14 14:19     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-09-14 14:26       ` Eli Zaretskii
2024-09-14 13:58 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).