From d9a814e4372e3eda91e6e4ccdd293a4bf3695840 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Thu, 27 May 2010 14:43:11 +0000 Subject: [PATCH] * Improve rotated T, add P Q R ; 3 4 --- caca/transform.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/caca/transform.c b/caca/transform.c index 93ef48f..bd547ee 100644 --- a/caca/transform.c +++ b/caca/transform.c @@ -925,10 +925,13 @@ static uint32_t rotatechar(uint32_t ch) /* ASCII-Unicode */ '_', 0x203e, /* _ ‾ */ ',', 0x00b4, /* , ´ */ + ';', 0x061b, /* ; ؛ */ '`', 0x02ce, /* ` ˎ */ '&', 0x214b, /* & ⅋ */ '!', 0x00a1, /* ! ¡ */ '?', 0x00bf, /* ? ¿ */ + '3', 0x0190, /* 3 Ɛ */ + '4', 0x152d, /* 4 ᔭ */ 'A', 0x2200, /* A ∀ */ 'B', 0x10412,/* B 𐐒 */ 'C', 0x03fd, /* C Ͻ */ @@ -938,7 +941,10 @@ static uint32_t rotatechar(uint32_t ch) 'G', 0x2141, /* G ⅁ */ 'J', 0x148b, /* J ᒋ */ 'L', 0x2142, /* L ⅂ */ - 'T', 0x2534, /* T ┴ */ + 'P', 0x0500, /* P Ԁ */ + 'Q', 0x038c, /* Q Ό */ + 'R', 0x1d1a, /* R ᴚ */ + 'T', 0x22a5, /* T ⊥ */ 'U', 0x0548, /* U Ո */ 'V', 0x039b, /* V Λ */ 'Y', 0x2144, /* Y ⅄ */