Re: [PATCH] nls: Switch one of the interrobang sequences to gnaborretni

2010-07-30 Thread Adam Jackson
On Thu, 2010-07-29 at 16:56 -0400, James Cloos wrote:
> Makes sense.
> 
> Reviewed-by: James Cloos 

Pushed, thanks.

- ajax


signature.asc
Description: This is a digitally signed message part
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Re: [PATCH] nls: Switch one of the interrobang sequences to gnaborretni

2010-07-29 Thread James Cloos
Makes sense.

Reviewed-by: James Cloos 

-JimC
-- 
James Cloos  OpenPGP: 1024D/ED7DAEA6
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel


[PATCH] nls: Switch one of the interrobang sequences to gnaborretni

2010-07-29 Thread Adam Jackson
Since gnaborretni is primarily used in LTR locales, the ? part of the
sequence reflects the position of the bulge in the ?.  When scanning an
inverted interrobang left-to-right, you see the bulge first, so the
compose sequence ?! is used; upright interrobang shows the bulge
last, so it's !?.

This is a change in behaviour, but I was unable to come up with anything
better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
~!? and ~?! were considered but are arguably less intuitive.

Signed-off-by: Adam Jackson 
---
 nls/en_US.UTF-8/Compose.pre |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/nls/en_US.UTF-8/Compose.pre b/nls/en_US.UTF-8/Compose.pre
index c4e0ab5..f38e15d 100644
--- a/nls/en_US.UTF-8/Compose.pre
+++ b/nls/en_US.UTF-8/Compose.pre
@@ -211,7 +211,7 @@ XCOMM Other symbols
: "№" numerosign # NUMERO SIGN
: "№" numerosign # NUMERO SIGN
 
-   : "‽"   U203D # INTERROBANG
+   : "⸘"   U2E18 # INVERTED INTERROBANG
: "‽"   U203D # INTERROBANG
 
  : "☭"   U262D # HAMMER AND SICKLE
-- 
1.7.2

___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel