emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: greek-style quotes for greek input method?


From: Giorgos Keramidas
Subject: Re: greek-style quotes for greek input method?
Date: Mon, 09 Aug 2010 09:58:53 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix)

On Mon, 09 Aug 2010 09:53:45 +0300, Giorgos Keramidas <address@hidden> wrote:
> On Mon, 09 Aug 2010 11:36:35 +0900, Kenichi Handa <address@hidden> wrote:
>>In article <address@hidden>, Giorgos Keramidas <address@hidden> writes:
>>> The mapping that we could use from input text to Unicode character of
>>> the greek-style quotes would be:
>>
>>>     (";<" "«")
>>>     (";>" "»")
>>
>> It seems reasonable to add that rules.
>> I've just committed the attached patch to emacs-23 branch.
>
>> === modified file 'leim/quail/greek.el'
>> --- leim/quail/greek.el      2010-01-13 08:35:10 +0000
>> +++ leim/quail/greek.el      2010-08-09 02:26:29 +0000
>> @@ -1279,7 +1279,9 @@
>>   (";:i" ?ΐ)
>>   (":;i" ?ΐ)
>>   (";:y" ?ΰ)
>> - (":;y" ?ΰ))
>> + (":;y" ?ΰ)
>> + (";<" "«")
>> + (";>" "»"))
>>
>>  (quail-define-package
>>   "greek-postfix" "GreekPost" "Ψ" nil
>
> Thanks!
>
> Should we also modify the greek-postfix rules to include "<;" and ">;"
> for the same?

Something like this perhaps?

%%%
diff -r 8be8f7b37e26 leim/quail/greek.el
--- a/leim/quail/greek.el       Fri Apr 03 03:02:01 2009 +0300
+++ b/leim/quail/greek.el       Mon Aug 09 09:55:26 2010 +0300
@@ -1279,7 +1279,9 @@ e.g.
  (";:i" ?ΐ)
  (":;i" ?ΐ)
  (";:y" ?ΰ)
- (":;y" ?ΰ))
+ (":;y" ?ΰ)
+ (";<" ?«)
+ (";>" ?»))
 
 (quail-define-package
  "greek-postfix" "GreekPost" "Ψ" nil
@@ -1419,7 +1421,9 @@ e.g.
  ("i:;" ?ΐ)
  ("i;:" ?ΐ)
  ("y:;" ?ΰ)
- ("y;:" ?ΰ))
+ ("y;:" ?ΰ)
+ ("<;" ?«)
+ (">;" ?»))
 
 
 ;; arch-tag: 2a37e042-db1b-4ecf-b755-117775a3c150
%%%



reply via email to

[Prev in Thread] Current Thread [Next in Thread]