unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#71220: Missing hyperlink
@ 2024-05-27  8:17 Dan Jacobson
  2024-05-27 11:39 ` Eli Zaretskii
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Jacobson @ 2024-05-27  8:17 UTC (permalink / raw)
  To: 71220

(info "(emacs) Fixing Case") contains a hyperlink to
(info "(emacs) Case") but the latter is missing a vital hyperlink to the former!!
I'm saying if we are reading the latter, we would feel sad if we found out one day we didn't know about the former.






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

* bug#71220: Missing hyperlink
  2024-05-27  8:17 bug#71220: Missing hyperlink Dan Jacobson
@ 2024-05-27 11:39 ` Eli Zaretskii
  2024-05-27 13:41   ` Dan Jacobson
  0 siblings, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2024-05-27 11:39 UTC (permalink / raw)
  To: Dan Jacobson; +Cc: 71220

> From: Dan Jacobson <jidanni@jidanni.org>
> Date: Mon, 27 May 2024 16:17:00 +0800
> 
> (info "(emacs) Fixing Case") contains a hyperlink to
> (info "(emacs) Case") but the latter is missing a vital hyperlink to the former!!
> I'm saying if we are reading the latter, we would feel sad if we found out one day we didn't know about the former.

I don't understand: "Case" tells everything that "Fixing Case" tells,
and then some.  By contrast, "Fixing Case" describes only a small part
of what "Case" describes, and it does that to avoid the need for the
reader to read the entire large section in "Case" when all they are
interested in is how to fix letter-case typos.

If we added a cross-reference to "Case" to "Fixing Case", what would
that add to what "Case" already describes?  If it doesn't add
anything, then a reverse cross-reference would not be useful.





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

* bug#71220: Missing hyperlink
  2024-05-27 11:39 ` Eli Zaretskii
@ 2024-05-27 13:41   ` Dan Jacobson
  2024-05-27 13:59     ` Eli Zaretskii
  2024-05-27 21:04     ` Stefan Kangas
  0 siblings, 2 replies; 7+ messages in thread
From: Dan Jacobson @ 2024-05-27 13:41 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 71220

>>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
EZ> I don't understand: "Case" tells everything that "Fixing Case" tells...

Here's the perfect spot for the link:

   When given a negative argument, the word case conversion commands
apply to the appropriate number of words before point, but do not move
point, see (info "(emacs) Fixing Case"). This is convenient when you have just typed a word in the wrong
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
case: you can give the case conversion command and continue typing.

That way users get to see much more detail !

If this were GitHub I would submit a PR.





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

* bug#71220: Missing hyperlink
  2024-05-27 13:41   ` Dan Jacobson
@ 2024-05-27 13:59     ` Eli Zaretskii
  2024-05-27 14:43       ` Dan Jacobson
  2024-05-27 21:04     ` Stefan Kangas
  1 sibling, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2024-05-27 13:59 UTC (permalink / raw)
  To: Dan Jacobson; +Cc: 71220

> From: Dan Jacobson <jidanni@jidanni.org>
> Cc: 71220@debbugs.gnu.org
> Date: Mon, 27 May 2024 21:41:20 +0800
> 
> >>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
> EZ> I don't understand: "Case" tells everything that "Fixing Case" tells...
> 
> Here's the perfect spot for the link:
> 
>    When given a negative argument, the word case conversion commands
> apply to the appropriate number of words before point, but do not move
> point, see (info "(emacs) Fixing Case"). This is convenient when you have just typed a word in the wrong
>        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> case: you can give the case conversion command and continue typing.
> 
> That way users get to see much more detail !

The text in "Fixing Case", all of it, is this:

  ‘M-- M-l’
       Convert last word to lower case.  Note ‘Meta--’ is Meta-minus.
  ‘M-- M-u’
       Convert last word to all upper case.
  ‘M-- M-c’
       Convert last word to lower case with capital initial.

     A very common error is to type words in the wrong case.  Because of
  this, the word case-conversion commands ‘M-l’, ‘M-u’, and ‘M-c’ have a
  special feature when used with a negative argument: they do not move the
  cursor.  As soon as you see you have mistyped the last word, you can
  simply case-convert it and go on typing.  *Note Case::.

What does this say that "Case", and in particular the paragraph you
quote above, does not?  I'd rather add whatever is missing to "Case"
than send the reader to another place in the manual.

> If this were GitHub I would submit a PR.

A GitHub PR is not automatically accepted, either.





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

* bug#71220: Missing hyperlink
  2024-05-27 13:59     ` Eli Zaretskii
@ 2024-05-27 14:43       ` Dan Jacobson
  2024-05-28 12:40         ` Eli Zaretskii
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Jacobson @ 2024-05-27 14:43 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 71220

On Mon, May 27, 2024 at 04:59:10PM +0300, Eli Zaretskii wrote:
> The text in "Fixing Case", all of it, is this:
> 
>   ‘M-- M-l’
>        Convert last word to lower case.  Note ‘Meta--’ is Meta-minus.
>   ‘M-- M-u’
>        Convert last word to all upper case.
>   ‘M-- M-c’
>        Convert last word to lower case with capital initial.
> 
> What does this say that "Case", and in particular the paragraph you
> quote above, does not?  I'd rather add whatever is missing to "Case"
> than send the reader to another place in the manual.

One gets to see three commands, each with its own two lines. That
leaves a lasting impression, instead of requiring the user to need to
analyze the sentence and come up with them in their head.





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

* bug#71220: Missing hyperlink
  2024-05-27 13:41   ` Dan Jacobson
  2024-05-27 13:59     ` Eli Zaretskii
@ 2024-05-27 21:04     ` Stefan Kangas
  1 sibling, 0 replies; 7+ messages in thread
From: Stefan Kangas @ 2024-05-27 21:04 UTC (permalink / raw)
  To: Dan Jacobson, Eli Zaretskii; +Cc: 71220

Dan Jacobson <jidanni@jidanni.org> writes:

> If this were GitHub I would submit a PR.

Perhaps sending patches is an acceptable alternative; run
`git format-patch -1' and then attach the result to your email.





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

* bug#71220: Missing hyperlink
  2024-05-27 14:43       ` Dan Jacobson
@ 2024-05-28 12:40         ` Eli Zaretskii
  0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2024-05-28 12:40 UTC (permalink / raw)
  To: Dan Jacobson; +Cc: 71220-done

> Date: Mon, 27 May 2024 22:43:40 +0800
> From: Dan Jacobson <jidanni@jidanni.org>
> Cc: 71220@debbugs.gnu.org
> 
> On Mon, May 27, 2024 at 04:59:10PM +0300, Eli Zaretskii wrote:
> > The text in "Fixing Case", all of it, is this:
> > 
> >   ‘M-- M-l’
> >        Convert last word to lower case.  Note ‘Meta--’ is Meta-minus.
> >   ‘M-- M-u’
> >        Convert last word to all upper case.
> >   ‘M-- M-c’
> >        Convert last word to lower case with capital initial.
> > 
> > What does this say that "Case", and in particular the paragraph you
> > quote above, does not?  I'd rather add whatever is missing to "Case"
> > than send the reader to another place in the manual.
> 
> One gets to see three commands, each with its own two lines. That
> leaves a lasting impression, instead of requiring the user to need to
> analyze the sentence and come up with them in their head.

OK, I added some stuff from "Fix Case" to "case", and I'm therefore
closing this bug.





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

end of thread, other threads:[~2024-05-28 12:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-27  8:17 bug#71220: Missing hyperlink Dan Jacobson
2024-05-27 11:39 ` Eli Zaretskii
2024-05-27 13:41   ` Dan Jacobson
2024-05-27 13:59     ` Eli Zaretskii
2024-05-27 14:43       ` Dan Jacobson
2024-05-28 12:40         ` Eli Zaretskii
2024-05-27 21:04     ` Stefan Kangas

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).