unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59476: Inconsistency in TeX input method: \ggg vs \Ll
@ 2022-11-22  7:25 Michael Shulman
  2022-11-22 11:06 ` Robert Pluim
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Shulman @ 2022-11-22  7:25 UTC (permalink / raw)
  To: 59476

[-- Attachment #1: Type: text/plain, Size: 459 bytes --]

The quail key sequences in the "TeX" input method are inconsistent: the
key sequence for 0x22D8 VERY MUCH LESS-THAN (⋘) is "\Ll", but the key
sequence for 0x22D9 VERY MUCH GREATER-THAN (⋙) is "\ggg".

Personally, I would prefer that they be made consistent by changing ⋘ to
"\lll" (or at least adding it as an alternative), since the Agda input
method, which inherits from the TeX input method, uses "\Gg" for the small
Greek letter gamma (γ).

[-- Attachment #2: Type: text/html, Size: 562 bytes --]

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

* bug#59476: Inconsistency in TeX input method: \ggg vs \Ll
  2022-11-22  7:25 bug#59476: Inconsistency in TeX input method: \ggg vs \Ll Michael Shulman
@ 2022-11-22 11:06 ` Robert Pluim
  2022-11-22 14:19   ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Pluim @ 2022-11-22 11:06 UTC (permalink / raw)
  To: Michael Shulman; +Cc: 59476

>>>>> On Mon, 21 Nov 2022 23:25:04 -0800, Michael Shulman <shulman@sandiego.edu> said:

    Michael> The quail key sequences in the "TeX" input method are inconsistent: the
    Michael> key sequence for 0x22D8 VERY MUCH LESS-THAN (⋘) is "\Ll", but the key
    Michael> sequence for 0x22D9 VERY MUCH GREATER-THAN (⋙) is "\ggg".

    Michael> Personally, I would prefer that they be made consistent by changing ⋘ to
    Michael> "\lll" (or at least adding it as an alternative), since the Agda input
    Michael> method, which inherits from the TeX input method, uses "\Gg" for the small
    Michael> Greek letter gamma (γ).

Thereʼs nothing stopping you from doing that locally:

(with-temp-buffer
  (activate-input-method "TeX") ;; the input method has to be triggered for `quail-package-alist' to be non-nil
  (let ((quail-current-package (assoc "TeX" quail-package-alist)))
    (quail-define-rules ((append . t))
                        ("\\lll" ?⋘))))

(I donʼt use the TeX input method, so I canʼt judge if doing that by
default makes sense, although adding it as an alternative seems
relatively harmless.)

Robert
-- 





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

* bug#59476: Inconsistency in TeX input method: \ggg vs \Ll
  2022-11-22 11:06 ` Robert Pluim
@ 2022-11-22 14:19   ` Eli Zaretskii
  2022-11-22 15:52     ` Robert Pluim
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2022-11-22 14:19 UTC (permalink / raw)
  To: Robert Pluim; +Cc: 59476, shulman

> Cc: 59476@debbugs.gnu.org
> From: Robert Pluim <rpluim@gmail.com>
> Date: Tue, 22 Nov 2022 12:06:45 +0100
> 
> (with-temp-buffer
>   (activate-input-method "TeX") ;; the input method has to be triggered for `quail-package-alist' to be non-nil
>   (let ((quail-current-package (assoc "TeX" quail-package-alist)))
>     (quail-define-rules ((append . t))
>                         ("\\lll" ?⋘))))
> 
> (I donʼt use the TeX input method, so I canʼt judge if doing that by
> default makes sense, although adding it as an alternative seems
> relatively harmless.)

Would you please add it?  TIA.





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

* bug#59476: Inconsistency in TeX input method: \ggg vs \Ll
  2022-11-22 14:19   ` Eli Zaretskii
@ 2022-11-22 15:52     ` Robert Pluim
  2022-11-22 16:52       ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Pluim @ 2022-11-22 15:52 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 59476, shulman

tags 59476 fixed
close 59476 29.1
quit

>>>>> On Tue, 22 Nov 2022 16:19:56 +0200, Eli Zaretskii <eliz@gnu.org> said:

    >> Cc: 59476@debbugs.gnu.org
    >> From: Robert Pluim <rpluim@gmail.com>
    >> Date: Tue, 22 Nov 2022 12:06:45 +0100
    >> 
    >> (with-temp-buffer
    >> (activate-input-method "TeX") ;; the input method has to be triggered for `quail-package-alist' to be non-nil
    >> (let ((quail-current-package (assoc "TeX" quail-package-alist)))
    >> (quail-define-rules ((append . t))
    >> ("\\lll" ?⋘))))
    >> 
    >> (I donʼt use the TeX input method, so I canʼt judge if doing that by
    >> default makes sense, although adding it as an alternative seems
    >> relatively harmless.)

    Eli> Would you please add it?  TIA.

Done
Closing
Committed as 4b6e152e34





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

* bug#59476: Inconsistency in TeX input method: \ggg vs \Ll
  2022-11-22 15:52     ` Robert Pluim
@ 2022-11-22 16:52       ` Eli Zaretskii
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2022-11-22 16:52 UTC (permalink / raw)
  To: Robert Pluim; +Cc: 59476, shulman

> From: Robert Pluim <rpluim@gmail.com>
> Cc: shulman@sandiego.edu,  59476@debbugs.gnu.org
> Date: Tue, 22 Nov 2022 16:52:03 +0100
> 
> tags 59476 fixed
> close 59476 29.1
> quit
> 
> >>>>> On Tue, 22 Nov 2022 16:19:56 +0200, Eli Zaretskii <eliz@gnu.org> said:
> 
>     >> Cc: 59476@debbugs.gnu.org
>     >> From: Robert Pluim <rpluim@gmail.com>
>     >> Date: Tue, 22 Nov 2022 12:06:45 +0100
>     >> 
>     >> (with-temp-buffer
>     >> (activate-input-method "TeX") ;; the input method has to be triggered for `quail-package-alist' to be non-nil
>     >> (let ((quail-current-package (assoc "TeX" quail-package-alist)))
>     >> (quail-define-rules ((append . t))
>     >> ("\\lll" ?⋘))))
>     >> 
>     >> (I donʼt use the TeX input method, so I canʼt judge if doing that by
>     >> default makes sense, although adding it as an alternative seems
>     >> relatively harmless.)
> 
>     Eli> Would you please add it?  TIA.
> 
> Done

Thanks!





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

end of thread, other threads:[~2022-11-22 16:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-22  7:25 bug#59476: Inconsistency in TeX input method: \ggg vs \Ll Michael Shulman
2022-11-22 11:06 ` Robert Pluim
2022-11-22 14:19   ` Eli Zaretskii
2022-11-22 15:52     ` Robert Pluim
2022-11-22 16:52       ` Eli Zaretskii

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