ChangeLog 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  1. 2012-08-24 Chong Yidong <cyd@gnu.org>
  2. * Version 24.2 released.
  3. 2012-06-01 Chong Yidong <cyd@gnu.org>
  4. * Version 24.1 released.
  5. 2012-03-25 Eli Zaretskii <eliz@gnu.org>
  6. * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
  7. of same-dir.tst, to avoid stepping on other (parallel) Make job's
  8. toes.
  9. 2012-03-21 Kenichi Handa <handa@m17n.org>
  10. * quail/indian.el ("devanagari-itrans"): Add a few more useful
  11. keys (Bug#10935).
  12. 2012-03-16 Kenichi Handa <handa@m17n.org>
  13. * quail/indian.el (telugu-inscript): Fix typo. (Bug#10936)
  14. 2012-03-13 Йордан Миладинов <jordanmiladinov@gmail.com> (tiny change)
  15. * quail/cyrillic.el (bulgarian-alt-phonetic):
  16. New input method. (Bug#10893)
  17. 2012-03-09 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
  18. * quail/persian.el: Update which includes: (1) full compliance to
  19. ISIRI-6219, forbidden characters were eliminated and missing
  20. characters were added; (2) layer 3 of ISIRI-9147 is now
  21. implemented with a '\' prefix; (3) double entry of characters
  22. which were postfixed with 'h' is now supported; (4) lots of
  23. comment and additional pointers have been added.
  24. 2011-12-15 Kenichi Handa <handa@m17n.org>
  25. * quail/ethiopic.el ("ethiopic"): Do not refer to
  26. ethio-prefer-ascii-punctuation.
  27. 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
  28. * quail/hangul.el (hangul-character): Fix typo.
  29. 2011-09-27 Jambunathan K <kjambunathan@gmail.com>
  30. * quail/indian.el (quail-tamil-itrans-misc-table): Delete it.
  31. (quail-tamil-itrans-numerics-and-symbols-table)
  32. (quail-tamil-itrans-various-signs-and-digits-table): New variables.
  33. ("tamil-itrans"): Show the values of above variables (Bug#9336).
  34. 2011-09-22 Kenichi Handa <handa@m17n.org>
  35. * quail/indian.el (quail-tamil-itrans-syllable-table)
  36. (quail-tamil-itrans-misc-table): New variables.
  37. ("tamil-itrans"): Improve the docstring by showing the values of
  38. above variables (Bug#9336).
  39. 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
  40. * Makefile.in (install): install-sh is now in build-aux (Bug#9169).
  41. 2011-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
  42. * quail/latin-ltx.el: Complete the super and subscript letters.
  43. 2011-08-20 Glenn Morris <rgm@gnu.org>
  44. * Makefile.in (OTHERS):
  45. * makefile.w32-in (MISC): Add ipa-praat.elc.
  46. 2011-07-23 Yair F <yair.f.lists@gmail.com>
  47. * quail/hebrew.el ("hebrew"): Additional key mappings.
  48. ("hebrew-new", "hebrew-lyx", "hebrew-full")
  49. ("hebrew-biblical-tiro", "hebrew-biblical-sil", "yiddish-royal")
  50. ("yiddish-keyman"): New input methods.
  51. 2011-06-12 Andreas Schwab <schwab@linux-m68k.org>
  52. * SKK-DIC/SKK-JISYO.L: Add proper coding tag.
  53. * CXTERM-DIC/4Corner.tit, CXTERM-DIC/ARRAY30.tit,
  54. * CXTERM-DIC/CCDOSPY.tit, CXTERM-DIC/ECDICT.tit,
  55. * CXTERM-DIC/ETZY.tit, CXTERM-DIC/PY-b5.tit,
  56. * CXTERM-DIC/Punct-b5.tit, CXTERM-DIC/Punct.tit,
  57. * CXTERM-DIC/QJ-b5.tit, CXTERM-DIC/QJ.tit, CXTERM-DIC/SW.tit,
  58. * CXTERM-DIC/TONEPY.tit, CXTERM-DIC/ZOZY.tit: Likewise.
  59. * MISC-DIC/cangjie-table.b5, MISC-DIC/cangjie-table.cns,
  60. * MISC-DIC/pinyin.map, MISC-DIC/ziranma.cin: Likewise.
  61. * Makefile.in (TIT_BIG5): Rename from TIT-BIG5.
  62. 2011-05-30 Oliver Scholz <epameinondas@gmx.de>
  63. * quail/ipa-praat.el: New input method.
  64. 2011-05-16 Eli Zaretskii <eliz@gnu.org>
  65. * Makefile.in (OTHERS): Add $(srcdir)/quail/persian.elc.
  66. * makefile.w32-in (MISC): Add $(srcdir)/quail/persian.elc.
  67. 2011-05-16 Mohsen BANAN <libre@mohsen.banan.1.byname.net>
  68. * quail/persian.el: New file.
  69. 2011-05-05 Eli Zaretskii <eliz@gnu.org>
  70. * quail/latin-ltx.el <\beth, \gimel, \daleth>: Produce
  71. corresponding symbols rather than Hebrew letters. (Bug#8563)
  72. * quail/latin-ltx.el <\aleph>: Produce ALEF SYMBOL instead of
  73. HEBREW LETTER ALEF. (Bug#8563)
  74. 2011-03-23 Glenn Morris <rgm@gnu.org>
  75. * Makefile.in (install): Use `install-sh -d' rather than mkinstalldirs.
  76. 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
  77. * Version 23.3 released.
  78. 2011-02-28 Juanma Barranquero <lekktu@gmail.com>
  79. * quail/ethiopic.el ("ethiopic"): Fix tpo in docstring.
  80. 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
  81. Redo spelling of Makefile variables to conform to POSIX.
  82. POSIX does not allow "-" in Makefile variable names.
  83. Reported by Bruno Haible in
  84. <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00990.html>.
  85. * Makefile.in (BUILT_EMACS): Rename from BUILT-EMACS.
  86. (TIT_GB): Rename from TIT-GB.
  87. (CHINESE_TIT): Rename from CHINESE-TIT.
  88. (NON_TIT_GB): Rename from NON-TIT-GB.
  89. (NON_TIT_BIG5): Rename from NON-TIT-BIG5.
  90. (CHINESE_NON_TIT): Rename from CHINESE-NON-TIT.
  91. (CHINESE_GB): Rename from CHINESE-GB.
  92. (CHINESE_BIG5): Rename from CHINESE-BIG5.
  93. (TIT_MISC): Rename from TIT-MISC.
  94. (NON_TIT_MISC): Rename from NON-TIT-MISC.
  95. (TIT_SOURCES): Rename from TIT-SOURCES.
  96. (MISC_SOURCES): Rename from MISC-SOURCES.
  97. 2011-01-08 Glenn Morris <rgm@gnu.org>
  98. * makefile.w32-in (RUN_EMACS):
  99. * Makefile.in (RUN-EMACS): Add --no-site-lisp.
  100. * makefile.w32-in (RUN_EMACS):
  101. * Makefile.in (RUN-EMACS): -batch implies --no-init-file.
  102. 2010-08-28 Kenichi Handa <handa@m17n.org>
  103. * quail/japanese.el (quail-japanese-update-translation):
  104. Fix handling of invalid key.
  105. 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
  106. * quail/vntelex.el ("vietnamese-telex"): Doc fix.
  107. * quail/georgian.el: Remove extra backslashes.
  108. 2010-08-14 Andreas Schwab <schwab@linux-m68k.org>
  109. * quail/arabic.el: Quote [ and ].
  110. * quail/latin-ltx.el: Likewise.
  111. * quail/greek.el ("greek", "greek-postfix"): Change string to
  112. character.
  113. 2010-08-13 Kenichi Handa <handa@m17n.org>
  114. * quail/greek.el ("greek-postfix"): Add rules for Greek style quotes.
  115. 2010-08-09 Kenichi Handa <handa@m17n.org>
  116. * quail/greek.el ("greek"): Add rules for Greek style quotes.
  117. 2010-05-15 Glenn Morris <rgm@gnu.org>
  118. * Makefile.in (install): Remove references to CVS-related files.
  119. 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
  120. * Version 23.2 released.
  121. 2010-04-06 Chong Yidong <cyd@stupidchicken.com>
  122. * quail/vntelex.el: Fix "af" rule (Bug#5836).
  123. 2010-03-27 Eli Zaretskii <eliz@gnu.org>
  124. * makefile.w32-in ($(TIT), $(MISC_DIC), leim-list.el): Enclose the
  125. argument of "-l" in $(ARGQUOTE), in case it includes blanks or
  126. other special characters.
  127. 2010-03-18 Glenn Morris <rgm@gnu.org>
  128. * Makefile.in (maintainer-clean): Use bootstrap-clean.
  129. (extraclean): Fix deletion patterns.
  130. * Makefile.in (dot): Remove, since ../ is used throughout the
  131. other Makefiles.
  132. 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
  133. * Branch for 23.2.
  134. 2010-02-16 Kenichi Handa <handa@m17n.org>
  135. * SKK-DIC/SKK-JISYO.L: Updated to the latest version.
  136. 2009-12-05 Vasily Korytov <vasily@korytov.pp.ru>
  137. * quail/cyrillic.el (russian-typewriter): Change keyboard layout.
  138. (Bug#904)
  139. 2009-09-09 Glenn Morris <rgm@gnu.org>
  140. * Makefile.in (install): Set umask to world-readable before creating
  141. directories.
  142. 2009-08-31 Juri Linkov <juri@jurta.org>
  143. * quail/ipa.el ("ipa"): Set `forget-last-selection' to nil.
  144. ("ipa-x-sampa"): Set `forget-last-selection' to nil.
  145. Set `deterministic' to nil.
  146. ("ipa"): Bind "g" to U+0261, and "tsh" to a list of "U+02A7",
  147. "U+0074 U+0283", "U+0074 U+2040 U+0283".
  148. ("ipa-kirshenbaum", ipa-x-sampa"): Bind "g" to U+0261, and "tS"
  149. to a list of "U+02A7", "U+0074 U+0283", "U+0074 U+2040 U+0283".
  150. Fix comments.
  151. 2009-08-31 Juri Linkov <juri@jurta.org>
  152. * quail/ipa.el ("ipa-kirshenbaum"): Rename from "kirshenbaum-ipa".
  153. ("ipa-x-sampa"): Rename from "x-sampa-ipa".
  154. (ipa-x-sampa-implosive-submap): Rename from
  155. x-sampa-implosive-submap.
  156. (ipa-x-sampa-prepend-to-keymap-entry): Rename from
  157. x-sampa-prepend-to-keymap-entry.
  158. (ipa-x-sampa-underscore-implosive): Rename from
  159. x-sampa-underscore-implosive.
  160. (ipa-x-sampa-implosive-submap): Move before first use.
  161. 2009-08-30 Aidan Kehoe <kehoea@parhasard.net>
  162. * quail/ipa.el ("kirshenbaum-ipa", "x-sampa-ipa"):
  163. Two new input methods, both following widely-used Usenet
  164. conventions for mapping ASCII to the IPA. Kirshenbaum is common in
  165. sci.lang and alt.usage.english, X-SAMPA in various (mostly
  166. European) non-English language fora. X-SAMPA is slightly more
  167. complex to support in Quail that Kirshenbaum, whence the two extra
  168. function and one extra submap to support it.
  169. (x-sampa-prepend-to-keymap-entry): New function.
  170. (x-sampa-underscore-implosive): New function.
  171. (x-sampa-implosive-submap): New Quail submap.
  172. 2009-08-30 Aidan Kehoe <kehoea@parhasard.net>
  173. * quail/ipa.el: Recode the file as UTF-8, for better
  174. interoperability with other applications.
  175. 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
  176. * quail/latin-ltx.el (\circ): Use the `ring operator' rather than
  177. `white circle'.
  178. * Makefile.in (leim-list.el, install): Don't use -r to remove files.
  179. 2009-08-25 Glenn Morris <rgm@gnu.org>
  180. * quail/hangul.el (top-level): Don't require cl at run-time.
  181. 2009-08-21 Thamer Mahmoud <thamer.mahmoud@gmail.com> (tiny change)
  182. * quail/arabic.el: Add missing keys that exist on the Arabic X
  183. keyboard. Don't insert Lam-alef ligatures from the Arabic
  184. Presentation Forms ranges; instead, separate Lam-Alef ligatures
  185. into a list of two letters (Lam and a suitable Alef).
  186. 2009-06-23 Kenichi Handa <handa@m17n.org>
  187. * quail/hangul.el (hangul-to-hanja-conversion): When it is called
  188. while korean input method is off, convert the following character.
  189. 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
  190. * Branch for 23.1.
  191. 2009-06-18 Kenichi Handa <handa@m17n.org>
  192. * quail/hangul.el (hangul-im-keymap): Add binding of key
  193. Hangul_Hanja.
  194. 2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
  195. * Makefile.in (install): Avoid using $$(..) construct, for Solaris
  196. compatibility.
  197. 2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
  198. * Makefile.in (install): Remove .gitignore files.
  199. 2009-03-19 Kenichi Handa <handa@m17n.org>
  200. * leim-ext.el: Change the encoding to utf-8.
  201. 2008-12-30 Jan Djärv <jan.h.d@swipnet.se>
  202. * Makefile.in (install): Remove old directories in ns_appresdir before
  203. moving new directories there.
  204. 2008-11-11 Juanma Barranquero <lekktu@gmail.com>
  205. * quail/hangul.el (hangul-im-keymap, hangul-insert-character)
  206. (hangul-djamo, hangul2-input-method-moum, hangul3-input-method-cho)
  207. (hangul3-input-method-jung, hangul3-input-method-jong):
  208. Fix typos in docstrings.
  209. 2008-11-07 Vasily Korytov <vasily@korytov.pp.ru> (tiny change)
  210. * quail/cyrillic.el: Handle backslash key (bug#839).
  211. 2008-10-20 Kenichi Handa <handa@m17n.org>
  212. * quail/indian.el (inscript-mlm-keytable): New variable.
  213. (malayalam-inscript): Use inscript-mlm-keytable.
  214. 2008-09-11 Magnus Henoch <mange@freemail.hu>
  215. * quail/cyrillic.el ("cyrillic-translit"): Add g' for Ukrainian G
  216. with upturn.
  217. 2008-09-02 Carsten Bormann <cabo@tzi.org>
  218. * quail/latin-post.el ("german-postfix"): Do not translate ue to
  219. \"u after a, e or q, because that would be extremely uncommon
  220. compared to aue, eue or que. The only exception is the prefix
  221. "ge", after which, according to corpus statistics, a \"u can be
  222. expected.
  223. 2008-08-10 Jihyun Cho <jihyun.jo@gmail.com>
  224. * quail/hangul.el (hangul3-input-method-jong): Fix array indexing bug.
  225. 2008-07-19 Juri Linkov <juri@jurta.org>
  226. * quail/cyrillic.el ("cyrillic-translit"): Add two rules "//'" and
  227. "//`" for combining accents as a separate character. Keep two
  228. rules "i`" and "I`" for characters where accent is not a separate
  229. character. Revert changes that added postfix combining accents.
  230. 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
  231. * Makefile.in (install): Perform post-install cleanup inside NS app
  232. bundle.
  233. 2008-07-12 Juri Linkov <juri@jurta.org>
  234. * quail/rfc1345.el: Replace non-printable control characters with
  235. equivalent text-only notations.
  236. * quail/cyrillic.el ("cyrillic-translit"): Fix rules with
  237. combining acute accent. Add rules ("e\\" ?э) ("E\\" ?Э).
  238. Change conflicting rules ("u'" ?ў) to ("u~" ?ў), and ("U'" ?Ў)
  239. to ("U~" ?Ў). Doc fix. Put combining accent rules into one group.
  240. 2008-07-10 Teodor Zlatanov <tzz@lifelogs.com>
  241. * quail/cyrillic.el : Add more rules to cyrillic-translit, make
  242. everything postfix. Adjust to eliminate conflicts.
  243. 2008-06-30 Juanma Barranquero <lekktu@gmail.com>
  244. * quail/hangul3.el: Remove (unneeded since 2008-06-03).
  245. 2008-06-27 Glenn Morris <rgm@gnu.org>
  246. * Makefile.in (.el.elc): Copy the echo behavior of lisp/Makefile.in.
  247. 2008-06-24 Juanma Barranquero <lekktu@gmail.com>
  248. * makefile.w32-in (MISC): Add $(srcdir)/quail/arabic.elc.
  249. 2008-06-20 Eli Zaretskii <eliz@gnu.org>
  250. * makefile.w32-in (distclean): Don't delete `quail' subdir: if we
  251. are building in the sandbox, there are precious files there.
  252. (clean mostlyclean): Delete leim-list.el~.
  253. (distclean): Delete makefile.
  254. 2008-06-13 Teodor Zlatanov <tzz@lifelogs.com>
  255. * quail/cyrillic.el: Add quotation marks, paragraph symbol, angled
  256. brackets, number symbol, and accented aeio to cyrillic-translit.
  257. 2008-06-03 Jihyun Cho <jihyun.jo@gmail.com>
  258. * quail/hangul.el: Completely re-written.
  259. 2008-06-03 Kenichi Handa <handa@m17n.org>
  260. * makefile.w32-in (KOREAN): Remove ${srcdir}/quail/hangul3.elc.
  261. (leim-list.el): Remove leim-list.el at first.
  262. * Makefile.in (KOREAN): Remove ${srcdir}/quail/hangul3.elc.
  263. (leim-list.el): Remove leim-list.el at first.
  264. * leim-ext.el: Register input methods "korean-hangul",
  265. "korean-hangul3f", "korean-hangul390", and "korean-hangul3".
  266. 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
  267. * quail/latin-ltx.el: Don't use single-char mapping from ~ to NBSP.
  268. 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
  269. * quail/indian.el: Don't require devan-util.
  270. 2008-02-01 James Cloos <cloos@jhcloos.com>
  271. * quail/arabic.el: Update (sync with xkeyboard-config keyboard).
  272. 2008-02-01 Kenichi Handa <handa@m17n.org>
  273. * Makefile.in (OTHERS): Add arabic.elc.
  274. 2008-02-01 James Cloos <cloos@jhcloos.com>
  275. * quail/arabic.el: New file.
  276. 2008-02-01 Kenichi Handa <handa@m17n.org>
  277. * MISC-DIC/pinyin.map: Fix encoding to that of the original file.
  278. 2008-02-01 KAWABATA, Taichi <kawabata@m17n.org>
  279. * quail/indian.el (quail-indian-flatten-list): Delete it.
  280. (quail-define-inscript-package): Pay attention to `nil' values of
  281. char/key-table.
  282. (inscript-tml-keytable): New variable. Use it for Tamil inscript.
  283. 2008-02-01 Dave Love <fx@gnu.org>
  284. * quail/latin-post.el ("turkish-latin-3-postfix"): Make it
  285. just an alias for turkish-postfix.
  286. * quail/latin-alt.el ("turkish-latin-3-alt-postfix"): Make it
  287. just an alias for turkish-alt-postfix.
  288. * quail/cyrillic.el (ukrainian-computer): Fix duplicate `\'.
  289. 2008-02-01 Kenichi Handa <handa@m17n.org>
  290. * quail/thai.el: Don't require thai-util.
  291. (quail-thai-update-translation): Delete function.
  292. (thai-generate-quail-map): Change to a macro that directly calls
  293. quail-define-rules.
  294. ("thai-kesmanee", "thai-pattachote"): Don't use
  295. UPDATE-TRANSLATION-FUNCTION.
  296. * quail/indian.el (quail-indian-preceding-char-position):
  297. Delete function.
  298. (quail-indian-update-preceding-char): Delete variable.
  299. (quail-indian-update-translation): Delete function.
  300. (quail-define-indian-trans-package): Don't call
  301. quail-define-package with quail-indian-update-translation.
  302. (quail-define-inscript-package): Likewise.
  303. 2008-02-01 Dave Love <fx@gnu.org>
  304. * quail/indian.el (quail-indian-preceding-char-position)
  305. (quail-indian-update-translation, quail-define-inscript-package):
  306. Use characterp, not char-valid-p.
  307. 2008-02-01 Dave Love <fx@gnu.org>
  308. * quail/welsh.el ("welsh"): Doc fix.
  309. * quail/cyrillic.el: Reinstate some commented-out redundancies.
  310. ("russian-typewriter"): Rename from cyrillic-typewriter.
  311. Make cyrillic-jcuken effectively an alias for it.
  312. ("russian-computer"): New.
  313. ("bulgarian-phonetic"): Rename from bulgarian-pho.
  314. ("bulgarian-bds"): Rename from bulgarian-standard.
  315. 2008-02-01 Dave Love <fx@gnu.org>
  316. * ja-dic/ja-dic.el: Add coding tag.
  317. 2008-02-01 Dave Love <fx@gnu.org>
  318. * latin-post.el: Recode to utf-8.
  319. ("latin-postfix"): New method.
  320. * latin-alt.el: Recode to utf-8.
  321. ("latin-alt-postfix"): New method.
  322. * quail/latin-pre.el: Recode to utf-8.
  323. ("latin-1-prefix", "latin-8-prefix", "latin-9-prefix"): Add nbsp.
  324. ("latin-3-prefix"): Remove bogus Latin-3 characters and ~o -> ġ,
  325. ~O -> Ġ.
  326. ("latin-prefix"): New method.
  327. * quail/uni-input.el (utf-8-ccl-encode): Delete.
  328. (ucs-input-method): Modify.
  329. 2008-02-01 Kenichi Handa <handa@etl.go.jp>
  330. * Makefile.in (RUN-EMACS): Add LC_ALL=C.
  331. 2008-01-14 Aidan Kehoe <kehoea@parhasard.net> (tiny change)
  332. * quail/latin-ltx.el ("TeX"): Correct the mappings for \v{k} and \vk.
  333. 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
  334. * makefile.w32-in:
  335. * Makefile.in: Remove references to Xenix.
  336. 2007-12-15 Richard Stallman <rms@gnu.org>
  337. * quail/latin-post.el ("scandinavian-postfix"): Doc fix.
  338. * quail/latin-alt.el: Many doc fixes.
  339. ("danish-alt-postfix")
  340. ("esperanto-alt-postfix", "finnish-alt-postfix")
  341. ("german-alt-postfix", "icelandic-alt-postfix")
  342. ("norwegian-alt-postfix", "scandinavian-alt-postfix")
  343. ("spanish-alt-postfix", "swedish-alt-postfix"):
  344. Delete; they were identical to the non-alt versions.
  345. 2007-12-07 Kenichi Handa <handa@ni.aist.go.jp>
  346. * quail/lao.el (quail-map-from-table): Allow a tone just after a
  347. consonant.
  348. 2007-11-17 Glenn Morris <rgm@gnu.org>
  349. * Makefile.in (check-declare): New target.
  350. 2007-10-31 Glenn Morris <rgm@gnu.org>
  351. * Makefile.in (install): Change ownership of installed files.
  352. 2007-10-20 Edward O'Connor <hober0@gmail.com> (tiny change)
  353. * quail/latin-ltx.el ("\\qed"): Add this rule.
  354. 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
  355. * quail/indian.el (quail-indian-update-preceding-char):
  356. Don't mark the variable as frame-local; it wasn't used as such.
  357. 2007-07-25 Glenn Morris <rgm@gnu.org>
  358. * Relicense all FSF files to GPLv3 or later.
  359. * COPYING: Switch to GPLv3.
  360. 2007-07-16 Eli Zaretskii <eliz@gnu.org>
  361. * makefile.w32-in (extraclean): Don't delete *~.
  362. 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
  363. * Version 22.1 released.
  364. 2007-01-30 Kenichi Handa <handa@m17n.org>
  365. * CXTERM-DIC/CCDOSPY.tit, CXTERM-DIC/PY-b5.tit, CXTERM-DIC/SW.tit,
  366. * CXTERM-DIC/TONEPY.tit: Add copyright and license notices.
  367. * MISC-DIC/pinyin.map, MISC-DIC/ziranma.cin: Add copyright and
  368. license notices.
  369. 2007-01-24 Kenichi Handa <handa@m17n.org>
  370. * MISC-DIC/README: New file.
  371. * CXTERM-DIC/README: New file.
  372. * CXTERM-DIC/4Corner.tit, CXTERM-DIC/CCDOSPY.tit,
  373. * CXTERM-DIC/PY-b5.tit, CXTERM-DIC/QJ-b5.tit, CXTERM-DIC/QJ.tit,
  374. * CXTERM-DIC/SW.tit, CXTERM-DIC/TONEPY.tit: Updated from
  375. X11R6/contrib/programs/cxterm.
  376. * ja-dic/ja-dic.el: Regenerated.
  377. 2007-01-12 Kenichi Handa <handa@m17n.org>
  378. * quail/uni-input.el (ucs-input-method): Signal an error for a
  379. Unicode character that is not yet supported.
  380. 2006-12-26 Andreas Schwab <schwab@suse.de>
  381. * Makefile.in (datarootdir): Define.
  382. 2006-12-20 Eli Zaretskii <eliz@gnu.org>
  383. * Makefile.in (leim-list.el): Depend on ${TIT-MISC}, not
  384. ${NON-TIT-MISC}.
  385. 2006-12-09 Juanma Barranquero <lekktu@gmail.com>
  386. * quail/latin-alt.el ("scandinavian-alt-postfix"): Fix typo.
  387. * quail/uni-input.el (ucs-input-help): Fix title of ucs input method.
  388. 2006-12-09 Eli Zaretskii <eliz@gnu.org>
  389. * makefile.w32-in (leim-list.el): Depend on leim-ext.el as well.
  390. Run Emacs to append non-empty non-comment lines in leim-ext.el
  391. to leim-list.el.
  392. 2006-12-05 Juanma Barranquero <lekktu@gmail.com>
  393. * makefile.w32-in (MISC): Add $(srcdir)/quail/sisheng.elc.
  394. 2006-11-29 Juanma Barranquero <lekktu@gmail.com>
  395. * quail/greek.el ("greek-mizuochi"): Remove spurious initial newline
  396. in docstring.
  397. 2006-11-04 Romain Francoise <romain@orebokech.com>
  398. * Makefile.in (bootstrap-clean): New target.
  399. 2006-10-12 Kenichi Handa <handa@m17n.org>
  400. * Makefile.in (install): Be sure to make ${INSTALLDIR} before `cd'
  401. to it.
  402. 2006-10-05 Chong Yidong <cyd@stupidchicken.com>
  403. * quail/latin-ltx.el: Fix typo in previous change.
  404. 2006-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
  405. * quail/latin-ltx.el: Remove rules that start with { since they are
  406. redundant and hence impact the { key for no good reason.
  407. 2006-10-02 Kenichi Handa <handa@m17n.org>
  408. * Makefile.in (install): Fix previous change.
  409. 2006-09-28 Kenichi Handa <handa@m17n.org>
  410. * Makefile.in (install): Be sure to make ${INSTALLDIR}.
  411. 2006-09-15 Jay Belanger <belanger@truman.edu>
  412. * COPYING: Replace "Library Public License" by "Lesser Public
  413. License" throughout.
  414. 2006-09-06 Michaël Cadilhac <michael.cadilhac@lrde.org>
  415. * quail/uni-input.el (ucs-input-method): Don't make the action of
  416. a key not in [0-9a-zA-Z] when it was expected to be. Let the Emacs
  417. mechanism do it.
  418. 2006-07-12 David Kastrup <dak@gnu.org>
  419. * quail/greek.el: Change iota subscriptum transliteration in
  420. Ibycus4 encoding's capitals from "i" to "|".
  421. 2006-03-03 Claudio Fontana <claudio@gnu.org>
  422. * Makefile.in (install): Add DESTDIR variable to support staged
  423. installations.
  424. 2005-12-17 Eli Zaretskii <eliz@gnu.org>
  425. * makefile.w32-in ($(TIT), leim-list.el): Warn that parts of
  426. commands enclosed in $(ARGQUOTE)s should not be split between two
  427. lines, as that will break with GNU Make >3.80, when sh.exe is used
  428. and arg quoting is with '..'.
  429. 2005-11-03 Andreas Schwab <schwab@suse.de>
  430. * Makefile.in (GZIP_PROG): Rename from GZIP.
  431. (install): Adjust.
  432. 2005-11-01 Romain Francoise <romain@orebokech.com>
  433. * Makefile.in (install): Compress source files.
  434. 2005-10-28 Juri Linkov <juri@jurta.org>
  435. * quail/symbol-ksc.el: Add missing characters from 1st pos of
  436. every table of [korean-ksc5601], and swap incorrectly ordered
  437. characters at pos 91 and 90.
  438. 2005-10-26 Torsten Bronger <bronger@physik.rwth-aachen.de> (tiny change)
  439. * quail/latin-ltx.el ("TeX"): Change "\," mapping to U+202F (not
  440. U+2006). Add more mappings from TeX's textcomp package.
  441. 2005-10-25 Juri Linkov <juri@jurta.org>
  442. * quail/cyrillic.el ("cyrillic-translit"): Set 4th arg `guidance'
  443. to t for this multi-key input method.
  444. 2005-10-24 Kenichi Handa <handa@m17n.org>
  445. * quail/uni-input.el (ucs-input-activate): Don't add
  446. quail-kill-guidance-buf to kill-buffer-hook.
  447. 2005-07-08 Kenichi Handa <handa@m17n.org>
  448. * quail/japanese.el (quail-japanese-kanji-kkc): Fix order of
  449. insertion and deletion.
  450. 2005-07-04 Lute Kamstra <lute@gnu.org>
  451. Update FSF's address in GPL notices.
  452. 2005-06-28 Kenichi Handa <handa@m17n.org>
  453. * leim-ext.el: Add rules for inserting full-width space for
  454. quail/Punct and quail/Punct-b5.
  455. 2005-06-04 Eli Zaretskii <eliz@gnu.org>
  456. * makefile.w32-in (distclean): Fix a typo (colon was after "clean").
  457. (extraclean): New target, emulates Makefile.in.
  458. 2005-04-06 Kenichi Handa <handa@m17n.org>
  459. * quail/sgml-input.el ("sgml"): Enable quail-completion by typing TAB.
  460. 2005-03-26 Kenichi Handa <handa@m17n.org>
  461. * quail/latin-ltx.el ("TeX"): Enable quail-completion by typing TAB.
  462. 2005-03-18 Kenichi Handa <handa@m17n.org>
  463. * quail/thai.el (quail-thai-update-translation): Delete it.
  464. (thai-generate-quail-map): Generate a simpler map.
  465. ("thai-kesmanee"): Don't use quail-thai-update-translation.
  466. (thai-generate-quail-map): Likewise.
  467. 2005-03-15 Kenichi Handa <handa@m17n.org>
  468. * quail/thai.el (thai-generate-quail-map): Fix the kesmanee layout.
  469. 2005-03-08 Kenichi Handa <handa@m17n.org>
  470. * quail/latin-pre.el ("latin-1-prefix"): Add rule "__"->"_".
  471. ("latin-9-prefix"): Add rules "__"->"_", "_ "->NBSP.
  472. 2004-12-04 Kenichi Handa <handa@m17n.org>
  473. * quail/lao.el (lao-key-alist): Declare it by defvar.
  474. (lao-key-alist-vector): New variable.
  475. (lao-consonant-key-alist, lao-semivowel-key-alist)
  476. (lao-vowel-key-alist, lao-voweltone-key-alist)
  477. (lao-tone-key-alist, lao-other-key-alist): Initialize them from
  478. lao-key-alist-vector.
  479. 2004-09-25 Kenichi Handa <handa@m17n.org>
  480. * quail/uni-input.el (ucs-input-method): Add error clause to
  481. condition-case.
  482. 2004-09-21 Kenichi Handa <handa@m17n.org>
  483. * quail/uni-input.el: Move the call of register-input-method to
  484. leim-ext.el.
  485. (ucs-input-insert-char): New function.
  486. (ucs-input-method): Use ucs-input-insert-char.
  487. (ucs-input-activate): Call quail-hide-guidance instead of
  488. quail-hide-guidance-buf.
  489. * leim-ext.el: Add autoload for 'ucs-input-activate and
  490. register-input-method for "ucs".
  491. 2004-08-21 David Kastrup <dak@gnu.org>
  492. * quail/greek.el ("greek-babel"): Add accent/breathing/uppercase
  493. combinations.
  494. 2004-08-16 Kenichi Handa <handa@m17n.org>
  495. * quail/georgian.el ("georgian"): Call quail-define-package with
  496. the show-layout arg t.
  497. 2004-08-06 Andreas Schwab <schwab@suse.de>
  498. * Makefile.in (install): Remove .arch-inventory files.
  499. 2004-07-01 David Kastrup <dak@gnu.org>
  500. * quail/greek.el ("((") ("))"): Add quotation mark shorthands.
  501. 2004-06-30 Andreas Schwab <schwab@suse.de>
  502. * Makefile.in (${CHINESE-TIT:.elc=.el}): Depend on changed.tit to
  503. serialize parallel builds.
  504. (${MISC:.elc=.el}): Depend on changed.misc.
  505. 2004-06-05 Kenichi Handa <handa@m17n.org>
  506. * Makefile.in (leim-list.el): Depend on leim-ext.el. Append the
  507. contents of leim-ext.el to leim-list.el.
  508. * leim-ext.el: New file.
  509. 2004-05-17 Werner Lemberg <wl@gnu.org>
  510. * quail/sisheng.el: New file.
  511. 2004-05-17 Kenichi Handa <handa@m17n.org>
  512. * Makefile.in (OTHERS): Add ${srcdir}/quail/sisheng.elc.
  513. 2004-05-11 Eli Zaretskii <eliz@gnu.org>
  514. * Makefile.in (leim-list.el): Move commands to convert TIT and
  515. MISC dictionaries from here...
  516. (changed.tit, changed.misc): ...to here. Remove the (now
  517. unneeded) test of the contents of changed.* files.
  518. 2004-05-10 Andreas Schwab <schwab@suse.de>
  519. * Makefile.in (all): Re-add dependency on ${WORLD} so that lisp
  520. files are compiled when bootstrapping.
  521. 2004-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
  522. * quail/latin-ltx.el ("TeX"): Fix typo.
  523. 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
  524. * quail/latin-ltx.el: Use utf-8 coding.
  525. ("TeX"): Add de and fr quotes. From Karl Eichwalder <ke@suse.de>.
  526. 2004-05-04 Kenichi Handa <handa@m17n.org>
  527. * Makefile.in (TIT-SOURCES): Prepend ${srcdir} to each element.
  528. (MISC-SOURCES): Likewise.
  529. 2004-05-01 Kenichi Handa <handa@m17n.org>
  530. * Makefile.in (OTHERS): Rename from MISC.
  531. (MISC): Rename from MISC-DIC.
  532. (WORLD): Adjust for the above changes.
  533. (TIT-MISC, NON-TIT-MISC): New targets.
  534. (all): Don't depend on ${WORLD}.
  535. (.NOTPARALLEL, .NO_PARALLEL, ${TIT}, ${MSIC-IDC}): Remove these targets.
  536. (TIT-SOURCES, MISC-SOURCES): New macros.
  537. (changed.tit, changed.misc): New targets.
  538. (leim-list.el): Depend on ${NON-TIT-MISC}, changed.tit, and
  539. changed.misc. Generate quail files from TIT and MISC files if
  540. necessary.
  541. (clean mostlyclean): Delete ${TIT-MISC} instead of ${TIT} and
  542. ${MISC-DIC}.
  543. 2004-05-03 Jason Rumney <jasonr@gnu.org>
  544. * makefile.nt: Remove.
  545. 2004-04-23 Juanma Barranquero <lektu@terra.es>
  546. * makefile.w32-in: Add "-*- makefile -*-" mode tag.
  547. 2004-04-09 Andrew Innes <andrewi@gnu.org>
  548. * makefile.w32-in (distclean clean): Remove nmake specific
  549. stamp-subdir test.
  550. 2004-02-28 Kenichi Handa <handa@m17n.org>
  551. * Makefile.in (all): Depend on ${WORLD} instead of ${TIT} and
  552. ${MISC-DIC}.
  553. (clean, mostlyclean): Don't delete *.elc distributed with tarball.
  554. (maintainer-clean): Delete files that are not in CVS repository.
  555. * makefile.nt (all): Depend on $(WORLD) instead of $(TIT) and
  556. $(MISC-DIC).
  557. (clean, mostlyclean): Don't delete *.elc distributed with tarball.
  558. (maintainer-clean): Delete files that are not in CVS repository.
  559. * makefile.w32-in (all): Depend on $(WORLD) instead of $(TIT) and
  560. $(MISC-DIC).
  561. (clean, mostlyclean): Don't delete *.elc distributed with tarball.
  562. (maintainer-clean): Delete files that are not in CVS repository.
  563. 2004-02-16 Jérôme Marant <jmarant@nerim.net> (tiny change)
  564. * Makefile.in (distclean maintainer-clean): Depend on clean.
  565. 2004-01-27 Ognyan Kulev <ogi@fmi.uni-sofia.bg> (tiny change)
  566. * quail/cyrillic.el ("bulgarian-bds"): Docstring fixed.
  567. 2004-01-22 Ognyan Kulev <ogi@fmi.uni-sofia.bg> (tiny change)
  568. * quail/cyrillic.el ("bulgarian-phonetic"): Docstring fixed.
  569. Duplicate entry removed.
  570. ("bulgarian-bds"): Docstring fixed.
  571. 2003-10-06 Dave Love <fx@gnu.org>
  572. * quail/latin-ltx.el: Several additions.
  573. 2003-08-25 Jesper Harder <harder@ifa.au.dk> (tiny change)
  574. * quail/latin-pre.el ("german-prefix"): Fix typo in the docstring.
  575. 2003-08-20 Dave Love <fx@gnu.org>
  576. * quail/latin-ltx.el: Add \rhd.
  577. 2003-08-19 Markus Rost <rost@math.ohio-state.edu>
  578. * quail/latin-pre.el ("french-prefix"): Fix spacing in docstring.
  579. 2003-07-21 KAWABATA, Taichi <kawabata@m17n.org>
  580. * quail/indian.el (quail-indian-update-translation): Adjust the
  581. behavior according to the change of quail-translate-key.
  582. 2003-05-22 Kenichi Handa <handa@m17n.org>
  583. * quail/pypunct-b5.el ("chinese-py-punct-b5"): Change the title
  584. Chinese characters from GB to Big5.
  585. 2003-05-01 Wlodzimierz Bzyl <matwb@julia.univ.gda.pl> (tiny change)
  586. * quail/latin-pre.el ("polish-slash"): Add the rule "//"->?/.
  587. 2003-04-05 Andreas Schwab <schwab@suse.de>
  588. * Makefile.in (install): Remove CVS related and backup files from
  589. installation directory.
  590. 2003-02-27 David Kastrup <dak@gnu.org>
  591. * quail/greek.el (greek-babel): Add koronis transliteration.
  592. 2003-02-23 David Kastrup <dak@gnu.org>
  593. * quail/greek.el (greek-babel): Fix <' accent.
  594. 2003-02-17 Dave Love <fx@gnu.org>
  595. * quail/cyrillic.el (ukrainian-computer): Fix duplicate `\'.
  596. 2003-02-14 Juanma Barranquero <lektu@terra.es>
  597. * quail/uni-input.el (utf-8-ccl-encode): Fix use of character constants.
  598. 2003-02-11 KAWABATA, Taichi <kawabata@m17n.org>
  599. * quail/indian.el (punjabi-itrans, gujarati-itrans, oriya-itrans)
  600. (bengali-itrans, assamese-itrans, telugu-itrans, kannada-itrans)
  601. (malayalam-itrans, tamil-itrans): New ITRANS based input methods.
  602. (punjabi-inscript, gujarati-inscript, oriya-inscript)
  603. (bengali-inscript, assamese-inscript, telugu-inscript)
  604. (kannada-inscript, malayalam-inscript, tamil-inscript):
  605. New INSCRIPT based input methods.
  606. 2003-02-07 Kenichi Handa <handa@m17n.org>
  607. * quail/cyrillic.el: Update quail-package-alist (not
  608. input-method-alist) to make "cyrillic-jcuken" an alias of
  609. "russian-typewriter". Add cookie for quail-update-leim-list-file.
  610. 2003-02-05 David Kastrup <dak@gnu.org>
  611. * quail/greek.el: Fix iota accent typos in greek-babel encoding.
  612. 2003-01-05 Dave Love <fx@gnu.org>
  613. * makefile.w32-in (SLAVIC): Add croatian.elc.
  614. * Makefile.in (SLAVIC): Add croatian.elc.
  615. * quail/croatian.el: New file.
  616. 2002-12-10 Juanma Barranquero <lektu@terra.es>
  617. * makefile.w32-in (LATIN): Add welsh.elc.
  618. (MISC): Add georgian.elc.
  619. (UNICODE): Add it.
  620. (WORLD): Add $(UNICODE).
  621. 2002-11-14 Dave Love <fx@gnu.org>
  622. * quail/slovak.el: Add coding cookie.
  623. * quail/latin-ltx.el: Fix coding cookie.
  624. * quail/hebrew.el: Add coding cookie.
  625. * quail/czech.el: Add coding cookie.
  626. * quail/welsh.el: Undo last change.
  627. 2002-09-11 Dave Love <fx@gnu.org>
  628. * quail/latin-post.el ("slovenian"): New.
  629. 2002-09-05 Kenichi Handa <handa@etl.go.jp>
  630. * quail/thai.el (thai-kesmanee): Fix the mapping of `"' and `}'.
  631. 2002-07-24 Dave Love <fx@gnu.org>
  632. * quail/latin-alt.el ("latin-alt-postfix"): New.
  633. * quail/latin-post.el ("latin-postfix"): New.
  634. * quail/latin-pre.el ("latin-1-prefix"): Add nbsp.
  635. ("latin-3-prefix"): Doc fix.
  636. ("latin-prefix"): New.
  637. 2002-07-12 Dave Love <fx@gnu.org>
  638. * quail/cyrillic.el: Doc fixes.
  639. ("cyrillic-beylorussian"): Commented-out.
  640. ("cyrillic-translit-bulgarian"): Delete.
  641. ("cyrillic-ukrainian"): Fix `q', `Q', `W', `w' bindings.
  642. ("ukrainian-computer", "belarusian", "bulgarian-bds")
  643. ("russian-computer"): New.
  644. ("bulgarian-phonetic"): Rename from bulgarian-pho. Add §, №, Ю.
  645. ("russian-typewriter"): Rename from cyrillic-jcuken.
  646. 2002-06-20 Dave Love <fx@gnu.org>
  647. * quail/latin-pre.el ("latin-3-prefix"): Remove bogus Latin-3
  648. characters and ~o -> ġ, ~O -> Ġ.
  649. 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
  650. * Makefile.in (install): Use "tar -chf", to follow symlinks.
  651. 2002-05-04 Triet Hoai Lai <thlai@ee.usyd.edu.au>
  652. * quail/vntelex.el: Add even more rules.
  653. 2002-04-30 Triet Hoai Lai <thlai@ee.usyd.edu.au>
  654. * quail/vntelex.el: Add new rules to escape from composition.
  655. 2002-04-29 Triet Hoai Lai <thlai@ee.usyd.edu.au>
  656. * quail/vntelex.el: Use proper charset.
  657. 2002-04-22 Koaunghi Un <koaunghi@ling.cnu.ac.kr>
  658. * quail/hanja.el ("Od"): Remove rule.
  659. 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
  660. * quail/indian.el: Replace commented-out lines with a condition
  661. that is always false.
  662. 2002-04-06 Jaeyoun Chung <jay@kldp.org>
  663. * quail/hanja3.el ("kf"): Add a few composing rules
  664. from "Taik-kyun Lim" <mongmong@milab.yonsei.ac.kr>
  665. * quail/hangul3.el: Buggy alternative second character
  666. sequence fixed ('/' for 'v' pair).
  667. added a few more third character composing rule.
  668. 2002-03-03 Werner Lemberg <wl@gnu.org>
  669. * quail/vntelex.el: New file.
  670. * Makefile.in (VIETNAMESE):
  671. * makefile.nt (VIETNAMESE):
  672. * makefile.w32-in (VIETNAMESE): Add it.
  673. 2002-02-10 Andrew Innes <andrewi@gnu.org>
  674. * makefile.w32-in ($(TIT)): Don't depend on $(SUBDIRS).
  675. ($(MISC_DIC)): Ditto.
  676. 2002-02-06 Richard M. Stallman <rms@gnu.org>
  677. * quail/latin-pre.el (french-prefix): ", " => "," and "~ " => "~".
  678. Don't define "~," at all.
  679. 2002-01-29 Pavel Janík <Pavel@Janik.cz>
  680. * quail/latin-pre.el (latin-2-prefix): Add Ě and ě.
  681. From "Dr. Eduard Werner" <edi.werner@gmx.de>.
  682. 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
  683. * quail/greek.el: Changed the behavior of the "greek" input
  684. method, to consider the "accent" and "diaeresis" as prefix keys.
  685. A new method (named "greek-postfix") was added which implements
  686. the old behavior. Also changed the mapping of the "Q/q" key to
  687. produce the ":/;" characters, as is customary in greek keyboards.
  688. From Nick Patavalis <npat@inaccessnetworks.com>.
  689. 2002-01-07 Jaeyoun Chung <jay@kldp.org>
  690. * quail/hangul.el: Remove key sequence mapping for O[rsfaqtTd].
  691. Not used for Korean Hangul Type 2 (request from emacs-kr mailing list).
  692. 2002-01-03 Eli Zaretskii <eliz@is.elta.co.il>
  693. * quail/cyrillic.el ("bulgarian-pho"): Fix a typo in a doc string.
  694. 2002-01-01 Dave Love <fx@gnu.org>
  695. * quail/indian.el (quail-define-indian-trans-package): Unquote lambda.
  696. (quail-define-inscript-package): Avoid mapcar*.
  697. 2001-12-20 Dave Love <fx@gnu.org>
  698. * quail/latin-ltx.el: Fix un-doubled backslashes.
  699. 2001-12-15 Dave Love <fx@gnu.org>
  700. * quail/latin-pre.el ("french-prefix", "german-prefix")
  701. ("spanish-prefix"): Fix language assignment.
  702. * quail/latin-post.el ("french-postfix", "german-postfix")
  703. ("spanish-postfix", "turkish-latin-3-postfix", "turkish-postfix")
  704. ("french-keyboard", "french-azerty", "german")
  705. ("spanish-keyboard"): Fix language assignment.
  706. * quail/indian.el: Don't require cl.
  707. (quail-indian-flatten-list): Rename from flatten-list.
  708. * quail/cyrillic.el ("cyrillic-beylorussian")
  709. ("cyrillic-ukrainian", "cyrillic-translit-bulgarian")
  710. ("belarusian", "bulgarian-pho"): Fix language assignment.
  711. * quail/latin-alt.el ("french-alt-postfix", "german-alt-postfix")
  712. ("spanish-alt-postfix", "turkish-latin-3-alt-postfix")
  713. ("turkish-alt-postfix"): Fix language assignment.
  714. ("dutch"): Assign to Dutch. Use chars, not strings.
  715. ("lithuanian-numeric", "lithuanian-keyboard", "latvian-keyboard"): New.
  716. 2001-12-08 Pavel Janík <Pavel@Janik.cz>
  717. * COPYING: New file.
  718. 2001-12-03 Jaeyoun Chung <jay@kldp.org>
  719. * quail/hangul3.el: Add a few convenient composing sequences for
  720. Korean keyboard type 3 users.
  721. 2001-11-29 Dave Love <fx@gnu.org>
  722. * quail/latin-ltx.el: Extra translations. Fix some
  723. latin-iso8859-4 characters. Use Hebrew letters, not compatibility
  724. symbols.
  725. 2001-11-28 Juanma Barranquero <lektu@terra.es>
  726. * makefile.w32-in (INDIAN): Adjust for the file name change;
  727. quail/devanagari.elc -> quail/indian.elc.
  728. * makefile.nt (INDIAN): Likewise.
  729. 2001-11-21 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
  730. * quail/devanagari.el: Renamed to indian.el.
  731. * quail/indian.el: Renamed from devanagari.el, and completely
  732. re-written. The input method devanagari-hindi-transliteration is
  733. merged with devanagari-itrans, devanagari-keyboard-a is renamed to
  734. devanagari-inscript, devanagari-transliteration is renamed to
  735. devanagari-kyoto-harvard.
  736. * Makefile.in: Adjusted for the file name change;
  737. quail/devanagari.elc -> quail/indian.elc.
  738. 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
  739. * quail/welsh.el: Avoid an error message due to a commented-out
  740. input method.
  741. 2001-11-05 Richard M. Stallman <rms@gnu.org>
  742. * quail/rfc1345.el: Get rid of the explicit ^Z character.
  743. 2001-11-05 Eli Zaretskii <eliz@is.elta.co.il>
  744. * quail/latin-ltx.el: Remove the call to IT-setup-unicode-display.
  745. 2001-11-04 Dave Love <fx@gnu.org>
  746. * Makefile.in (LATIN): Add welsh.
  747. (UNICODE): New.
  748. (MISC): Add georgian.
  749. (WORLD): Add UNICODE.
  750. * quail/welsh.el, quail/georgian.el, quail/rfc1345.el:
  751. * quail/uni-input.el, quail/sgml-input.el: New file.
  752. * quail/cyrillic.el ("bulgarian-pho", "belarusian"): New methods.
  753. * quail/latin-alt.el ("dutch"): New method.
  754. 2001-10-27 Francesco Potortì <pot@gnu.org>
  755. * quail/latin-post.el ("italian-postfix"): Undo previous change.
  756. * quail/latin-alt.el ("italian-alt-postfix"): Undo previous change.
  757. 2001-10-25 Francesco Potortì <pot@gnu.org>
  758. * quail/latin-post.el ("italian-postfix"): Euro symbol.
  759. * quail/latin-alt.el ("italian-alt-postfix"): Euro symbol.
  760. 2001-10-20 Gerd Moellmann <gerd@gnu.org>
  761. * (Version 21.1 released.)
  762. 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
  763. * CXTERM-DIC/Punct-b5.tit: Add big5 Chinese double spaced alphabet
  764. mappings, so that one could type them without leaving the Hanyu
  765. Pinyin input method. Suggested by Kenichi Handa
  766. <handa@etl.go.jp>.
  767. 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
  768. * quail/greek.el ("greek-babel"): New input method. From David
  769. Kastrup <David.Kastrup@neuroinformatik.ruhr-uni-bochum.de>.
  770. 2001-10-05 Gerd Moellmann <gerd@gnu.org>
  771. * Branch for 21.1.
  772. 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
  773. * quail/greek.el ("greek-mizuochi"): Doc fix. From David Kastrup
  774. <David.Kastrup@neuroinformatik.ruhr-uni-bochum.de>.
  775. 2001-08-06 Gerd Moellmann <gerd@gnu.org>
  776. * quail/py-punct.el ("chinese-py-punct"): Copy the QUAIL-MAP of
  777. "chinese-py".
  778. ("chinese-tonepy-punct"): Copy the QUAIL-MAP of "chinese-tonepy".
  779. 2001-07-16 Pavel Janík <Pavel@Janik.cz>
  780. * ja-dic/ja-dic.el, quail/cyril-jis.el, quail/cyrillic.el
  781. * quail/czech.el, quail/devanagari.el, quail/ethiopic.el
  782. * quail/greek.el, quail/hangul.el, quail/hangul3.el
  783. * quail/hanja-jis.el, quail/hanja.el, quail/hanja3.el
  784. * quail/hebrew.el, quail/ipa.el, quail/japanese.el, quail/lao.el
  785. * quail/latin-alt.el, quail/latin-ltx.el, quail/latin-post.el
  786. * quail/latin-pre.el, quail/lrt.el, quail/py-punct.el
  787. * quail/pypunct-b5.el, quail/slovak.el, quail/symbol-ksc.el
  788. * quail/thai.el, quail/tibetan.el, quail/viqr.el: Some fixes to
  789. follow coding conventions.
  790. 2001-06-04 Andrew Choi <akochoi@i-cable.com>
  791. * quail/.cvsignore: Change CTLauB.el to CTLau-b5.el.
  792. 2001-06-01 Andrew Innes <andrewi@gnu.org>
  793. * makefile.nt (TIT_GB): Remove quail/PY.elc and quail/ZIRANMA.elc.
  794. (NON_TIT_BIG5): Remove $(srcdir)/quail/tsang-b5.elc and
  795. $(srcdir)/quail/pypunct-b5.elc.
  796. (NON_TIT_CNS): Remove.
  797. (CHINESE_NON_TIT): Remove $(NON_TIT_CNS).
  798. (CHINESE_CNS): Remove.
  799. (KOREAN): Add $(srcdir)/quail/hanja3.elc.
  800. (LATIN): Add $(srcdir)/quail/latin-alt.elc and
  801. $(srcdir)/quail/latin-ltx.elc.
  802. (MISC_DIC): Copy from Makefile.in.
  803. (CHINESE): Remove $(CHINESE_CNS).
  804. (all): Add $(MISC_DIC) as target.
  805. (.NOTPARALLEL): New target.
  806. (.NO_PARALLEL): New target.
  807. ($(MISC_DIC)): New target.
  808. (clean mostlyclean): Clean more stuff.
  809. (TIT_EL): New macro.
  810. (MISC_DIC_EL): New macro.
  811. * makefile.w32-in (TIT-GB): Remove CTLau.elc from it.
  812. (TIT-BIG5): Remove CTLauB.elc from it.
  813. (MISC-DIC): Add CTLau.elc and CTLau-b5.elc to it.
  814. (clean mostlyclean): Remove obsolete reference.
  815. 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
  816. * quail/latin-ltx.el [ms-dos]: Call IT-setup-unicode-display.
  817. 2001-05-24 Andrew Choi <akochoi@i-cable.com>
  818. * Makefile.in (MISC-DIC): Change CTLauB.elc to CTLau-b5.elc.
  819. * CXTERM-DIC/CTLau.tit, CXTERM-DIC/CTLauB.tit: Delete files.
  820. * MISC-DIC/CTLau.html, MISC-DIC/CTLau-b5.html: Add files.
  821. * Makefile.in (TIT-GB): Remove CTLau.elc from it.
  822. (TIT-BIG5): Remove CTLauB.elc from it.
  823. (MISC-DIC): Add CTLau.elc and CTLauB.elc to it.
  824. 2001-05-17 Dave Love <fx@gnu.org>
  825. * quail/latin-ltx.el ("TeX"): Rename from "latin-latex2e".
  826. Language family and indicator changed. Many new translations.
  827. 2001-05-17 Gerd Moellmann <gerd@gnu.org>
  828. * quail/slovak.el, quail/czech.el: Set guidance to t for czech and
  829. slovak input methods. New maintainer. From Pavel Janík
  830. <Pavel@Janik.cz>.
  831. 2001-04-23 Gerd Moellmann <gerd@gnu.org>
  832. * quail/latin-ltx.el: Add more translations.
  833. From jsbien@mimuw.edu.pl (Janusz S. Bień).
  834. 2001-04-19 Eli Zaretskii <eliz@is.elta.co.il>
  835. * quail/hangul.el <korean-hangul>: Doc fix.
  836. 2001-04-18 Andrew Innes <andrewi@gnu.org>
  837. * makefile.w32-in (EMACSLOADPATH): Define.
  838. ($(TIT)):
  839. ($(MISC_DIC)):
  840. (.el.elc):
  841. (leim-list.el): Remove stuff to set EMACSLOADPATH.
  842. 2001-04-05 Gerd Moellmann <gerd@gnu.org>
  843. * Makefile.in (install): Remove .cvsignore files.
  844. * quail/japanese.el ("japanese-hankaku-kana"): Don't use
  845. the same translations as for `japanese'.
  846. 2001-04-03 Andrew Innes <andrewi@gnu.org>
  847. * makefile.w32-in (TIT_GB): Delete quail/PY.elc and
  848. quail/ZIRANMA.elc.
  849. (NON_TIT_BIG5): Delete $(srcdir)/quail/quick-b5.elc and
  850. $(srcdir)/quail/tsang-b5.elc.
  851. (NON_TIT_CNS): Delete.
  852. (CHINESE_NON_TIT): Delete $(NON-TIT-CNS).
  853. (CHINESE_CNS): Delete.
  854. (KOREAN): Add ${srcdir}/quail/hanja3.elc. From Kenichi Handa
  855. <handa@etl.go.jp>.
  856. (MISC_DIC): New variable.
  857. (CHINESE): Delete $(CHINESE_CNS).
  858. (WORLD): Add $(MISC_DIC).
  859. (all): Depends on $(MISC_DIC).
  860. (.NOTPARALLEL, .NO_PARALLEL): New special targets.
  861. ($(MISC_DIC)): New target.
  862. (clean mostlyclean): Delete also $(NONTIT), $(WORLD), $(MISC_DIC)
  863. and $(MISC_DIC:.elc=.el).
  864. 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
  865. * Makefile.in (KOREAN): Add ${srcdir}/quail/hanja3.elc.
  866. From Kenichi Handa <handa@etl.go.jp>.
  867. * Makefile.in (.NOTPARALLEL, .NO_PARALLEL): Add ${MISC-DIC}.
  868. 2001-03-31 Kenichi Handa <handa@etl.go.jp>
  869. * Makefile.in (TIT-GB): Delete quail/PY.elc and quail/ZIRANMA.elc.
  870. (NON-TIT-BIG5): Delete ${srcdir}/quail/quick-b5.elc
  871. ${srcdir}/quail/tsang-b5.elc.
  872. (CHINESE-NON-TIT): Delete ${NON-TIT-CNS}.
  873. (CHINESE-CNS): Delete it.
  874. (MISC-DIC): New variable.
  875. (CHINESE): Delete ${CHINESE-CNS}.
  876. (WORLD): Add ${MISC-DIC}.
  877. (all): Depends on ${MISC-DIC}.
  878. (${MISC-DIC}): New target.
  879. (clean mostlyclean): Delete also ${MISC-DIC} ${MISC-DIC:.elc=.el}.
  880. * MISC-DIC/cangjie-table.b5, MISC-DIC/cangjie-table.cns,
  881. MISC-DIC/pinyin.map, MISC-DIC/ziranma.cin: New files.
  882. * CXTERM-DIC/PY.tit, CXTERM-DIC/ZIRANMA.tit: Delete them.
  883. * quail/tsang-b5.el, quail/tsang-cns.el, quail/quick-b5.el,
  884. * quail/quick-cns.el: Delete them.
  885. 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
  886. * Makefile.in (${TIT}): Fix whitespace.
  887. 2001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
  888. * Makefile.in (.NOTPARALLEL, .NO_PARALLEL): New special targets.
  889. (${TIT}): If the target file already exist, don't remake it.
  890. 2001-03-21 Kenichi Handa <handa@etl.go.jp>
  891. * quail/slovak.el ("slovak"): Translate "=q" to "`".
  892. 2001-03-16 Pavel Janík <Pavel@Janik.cz>
  893. * quail/slovak.el ("slovak"): Delete translations of "q", "Q",
  894. "=q", "+q", "=Q", and "+Q".
  895. ("slovak-prog-1"): Give t to the arg SHOW-LAYOUT.
  896. ("slovak-prog-2"): Likewise.
  897. ("slovak-prog-3"): Likewise.
  898. 2001-03-16 Eli Zaretskii <eliz@is.elta.co.il>
  899. * quail/latin-post.el ("finnish-keyboard"): Fix a typo.
  900. 2001-03-16 Kenichi Handa <handa@etl.go.jp>
  901. * quail/japanese.el (quail-japanese-transliteration-rules):
  902. New variable. Use it to define these input methods: "japanese",
  903. "japanese-hiragana", "japanese-katakana".
  904. (quail-japanese-kana-state): Delete this variable.
  905. (quail-japanese-toggle-kana): Don't use quail-japanese-kana-state,
  906. instead check if there's any Hiraganas in the conversion region.
  907. 2001-03-14 Kenichi Handa <handa@mule.m17n.org>
  908. * quail/slovak.el ("slovak"): Give t to the arg SHOW-LAYOUT.
  909. 2001-03-06 Kenichi Handa <handa@etl.go.jp>
  910. * CXTERM-DIC/4Corner.tit: Add copyright notice.
  911. 2001-03-05 Kenichi Handa <handa@etl.go.jp>
  912. * quail/ethiopic.el ("ethiopic"): Docstring adjusted for the
  913. change of the special key bindings.
  914. 2001-02-22 Kenichi Handa <handa@etl.go.jp>
  915. * CXTERM-DIC/ARRAY30.tit: Add copyright notice.
  916. * CXTERM-DIC/ETZY.tit: Likewise.
  917. * CXTERM-DIC/ZOZY.tit: Likewise.
  918. 2001-02-05 Andrew Innes <andrewi@gnu.org>
  919. * makefile.w32-in (BUILT_EMACS): Use $(THISDIR) to make emacs.exe
  920. path absolute.
  921. 2001-02-03 Andrew Innes <andrewi@gnu.org>
  922. * makefile.w32-in (LATIN): Fix last change to use () not {}.
  923. 2001-02-02 Kenichi Handa <handa@etl.go.jp>
  924. * Makefile.in (LATIN): Include ${srcdir}/quail/latin-alt.elc.
  925. * makefile.w32-in (LATIN): Likewise.
  926. * quail/latin-ltx.el: New file -- LaTeX-like Latin input method.
  927. 2001-02-01 Andrew Innes <andrewi@gnu.org>
  928. * makefile.w32-in (LATIN): Include $(srcdir)/quail/latin-alt.elc.
  929. 2001-02-01 Kenichi Handa <handa@etl.go.jp>
  930. * quail/greek.el ("greek-mizuochi"): New input method for
  931. classical Greek.
  932. 2001-01-28 Gerd Moellmann <gerd@gnu.org>
  933. * Makefile.in (extraclean): Add target so make doesn't die if
  934. one runs "make extraclean" at the top level.
  935. 2001-01-06 Andrew Innes <andrewi@gnu.org>
  936. * makefile.nt ($(TIT)): Map .elc to .el.
  937. (buildlisppath): Make path relative to $(MAKEDIR).
  938. 2001-01-01 Andreas Schwab <schwab@suse.de>
  939. * quail/latin-alt.el: Doc fixes.
  940. 2000-12-18 Dave Love <fx@gnu.org>
  941. * quail/latin-pre.el <latin-9-prefix>: Delete duplicate š entry.
  942. Change œ, Œ, ¶.
  943. 2000-12-16 Kenichi Handa <handa@etl.go.jp>
  944. * ja-dic/ja-dic.el: Re-generated by the new ja-dic-cnv.el.
  945. 2000-12-06 Andrew Innes <andrewi@gnu.org>
  946. * makefile.w32-in (buildlisppath): Set to an absolute directory,
  947. relative to $(CURDIR).
  948. (INSTALLDIR): Use forward slash.
  949. 2000-11-24 Andrew Innes <andrewi@gnu.org>
  950. * makefile.w32-in (.SUFFIXES): New target, include .elc .el.
  951. * makefile.nt (.SUFFIXES): New target, include .elc .el.
  952. 2000-11-21 Kenichi Handa <handa@etl.go.jp>
  953. * Makefile.in (.SUFFIXES): New target, include .elc .el.
  954. 2000-11-17 Kenichi Handa <handa@etl.go.jp>
  955. * quail/japanese.el (quail-japanese-kanji-kkc): Use marker to
  956. remember the conversion start.
  957. 2000-10-21 Andrew Innes <andrewi@gnu.org>
  958. * makefile.nt ($(TIT)): Add $(SUBDIRS) as dependents, instead
  959. of conditional invocation of make.
  960. (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
  961. (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
  962. (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
  963. files to .elc.
  964. ($(TIT)): Adjust for the above change.
  965. (clean mostlyclean): Likewise.
  966. (.el.elc): New target.
  967. * makefile.w32-in ($(TIT)): Add $(SUBDIRS) as dependents, instead
  968. of conditional invocation of make.
  969. (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
  970. (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
  971. (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
  972. files to .elc.
  973. ($(TIT)): Adjust for the above change.
  974. (clean mostlyclean): Likewise.
  975. (.el.elc): New target.
  976. 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
  977. * Makefile.in (${TIT}, clean): Don't use shell `command`
  978. expansion, use ${TIT:.elc=.el} instead.
  979. 2000-09-26 Gerd Moellmann <gerd@gnu.org>
  980. * Makefile.in: Make this the leim Makefile.in.
  981. (clean): Also remove $NON-TIT and $WORLD.
  982. (RUN-EMACS): Set EMACSLOADPATH.
  983. 2000-09-21 Kenichi Handa <handa@etl.go.jp>
  984. * Makefile.in: Revert to no-leim Makefile.
  985. * quail/.cvsignore: Include *.elc.
  986. * ja-dic/.cvsignore: New file.
  987. 2000-09-16 Andrew Innes <andrewi@gnu.org>
  988. * makefile.nt ($(TIT)): Set EMACSLOADPATH when running emacs.
  989. (leim-list.el): Ditto.
  990. * makefile.w32-in ($(TIT)): Set EMACSLOADPATH when running emacs.
  991. (leim-list.el): Ditto.
  992. 2000-09-15 Andrew Innes <andrewi@gnu.org>
  993. * makefile.w32-in (clean mostlyclean): Ignore errors when removing
  994. files.
  995. 2000-09-14 Andrew Innes <andrewi@gnu.org>
  996. * makefile.w32-in (clean mostlyclean): Ignore errors when deleting
  997. leim-list.el.
  998. (distclean maintainer-clean): Ditto for stamp-subdir.
  999. * makefile.nt: Rename skkdic to ja-dic.
  1000. 2000-09-07 Kenichi Handa <handa@etl.go.jp>
  1001. * quail/thai.el ("thai-kesmanee", "thai-pattachote"): Use keyboard
  1002. translation.
  1003. * quail/pypunct-b5.el ("chinese-py-punct-b5"): Docstring modified.
  1004. * quail/py-punct.el ("chinese-py-punct"): Docstring modified.
  1005. ("chinese-tonepy-punct"): New input method.
  1006. * quail/latin-pre.el ("polish-slash"): Don't use keyboard
  1007. translation.
  1008. * quail/japanese.el ("japanese"): Delete the key sequence for
  1009. Roman transliteration from the docstring because it's now shown
  1010. automatically.
  1011. ("japanese-ascii", "japanese-zenkaku")
  1012. ("japanese-hankaku-kana", "japanese-hiragana")
  1013. ("japanese-katakana"): Docstring modified.
  1014. * quail/czech.el ("czech-qwerty"): Change to show keyboard layout
  1015. on describe-input-method.
  1016. ("czech-prog-1", "czech-prog-2", "czech-prog-3"): Likewise.
  1017. 2000-09-03 Andrew Innes <andrewi@gnu.org>
  1018. * makefile.w32-in: New file.
  1019. (install) Fix copying of directories.
  1020. 2000-08-31 Kenichi Handa <handa@etl.go.jp>
  1021. * quail/thai.el (thai-generate-quail-map): If the length of
  1022. translation is more than one, compose it.
  1023. 2000-08-29 Dave Love <fx@gnu.org>
  1024. * quail/latin-pre.el ("latin-9-prefix"): Change entries for œ and Œ.
  1025. * Makefile.in: ja-dic <- skk in several places.
  1026. 2000-08-25 Kenichi Handa <handa@etl.go.jp>
  1027. * ja-dic: Directory name changed from skkdic.
  1028. * ja-dic/ja-dic.el[c]: Re-generated by the new ja-dic-cnv.el.
  1029. * README: Rename skkdic to ja-dic throughout the file.
  1030. 2000-08-24 Dave Love <fx@gnu.org>
  1031. * quail/latin-pre.el ("latin-8-prefix", "latin-9-prefix"): New.
  1032. ("latin-1-prefix"): Add missing symbols.
  1033. 2000-08-23 Dave Love <fx@gnu.org>
  1034. * quail/latin-pre.el ("latin-1-prefix"): Change ~s to give § and
  1035. add ~p for ¶.
  1036. 2000-07-18 Kenichi Handa <handa@etl.go.jp>
  1037. * quail/japanese.el ("japanese"): Fix docstring.
  1038. 2000-07-17 Kenichi Handa <handa@etl.go.jp>
  1039. * quail/japanese.el ("japanese"): Docstring modified.
  1040. 2000-06-12 Kenichi Handa <handa@etl.go.jp>
  1041. * quail/tibetan.el (tibetan-wylie-quote-alist): This variable deleted.
  1042. ("tibetan-wylie"): State transition table modified.
  1043. 2000-06-01 Kenichi Handa <handa@etl.go.jp>
  1044. * quail/tibetan.el: Change all tibetan-1-column characters to
  1045. tibetan. Quail map for "tibetan-wylie" fixed.
  1046. 2000-03-31 Wlodzimierz Bzyl <matwb@monika.univ.gda.pl>
  1047. * quail/latin-pre.el ("polish-slash"): New input method.
  1048. 2000-03-02 Kenichi Handa <handa@etl.go.jp>
  1049. * quail/latin-pre.el ("latin-1-prefix"): Add rules for symbols.
  1050. 2000-02-01 Gerd Moellmann <gerd@gnu.org>
  1051. * Makefile.in: Make this the no-leim Makefile. Move the
  1052. leim Makefile.in to ../leim-Makefile.in as it originally was.
  1053. * Makefile.noleim: Removed.
  1054. 2000-01-28 Kenichi Handa <handa@etl.go.jp>
  1055. * quail/hanja.el (korean-hanja): Add an entry for "wod".
  1056. 2000-01-04 Kenichi Handa <handa@etl.go.jp>
  1057. * quail/japanese.el ("japanese"): Docstring augmented.
  1058. 1999-12-15 Kenichi Handa <handa@etl.go.jp>
  1059. * quail/lao.el: Rewritten for new composition.
  1060. * quail/lrt.el: Rewritten for new composition.
  1061. * quail/thai.el: Rewritten for new composition.
  1062. * quail/tibetan.el: Rewritten for new composition.
  1063. 1999-12-13 Kenichi Handa <handa@etl.go.jp>
  1064. * quail/latin-pre.el ("esperanto-prefix"): Make it produce Latin-3
  1065. characters, not Latin-1.
  1066. 1999-11-22 Andrew Innes <andrewi@gnu.org>
  1067. * makefile.nt: No need to generate subdirs.el.
  1068. 1999-11-21 Andrew Innes <andrewi@gnu.org>
  1069. * makefile.nt: New file.
  1070. 1999-10-26 Gerd Moellmann <gerd@gnu.org>
  1071. * Makefile.noleim: New.
  1072. 1999-09-19 Ken'ichi Handa <handa@gnu.org>
  1073. * quail/latin-alt.el ("turkish-latin-3-alt-postfix"): Rename from
  1074. turkish-postfix.
  1075. ("turkish-postfix"): New Turkish input method which inserts
  1076. Latin-5 characters.
  1077. * quail/latin-alt.el ("turkish-latin-3-alt-postfix"): Rename from
  1078. turkish-alt-postfix.
  1079. ("turkish-alt-postfix"): New Turkish input method which inserts
  1080. Latin-5 characters.
  1081. 1999-07-12 Richard Stallman <rms@gnu.org>
  1082. * Version 20.4 released.
  1083. 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
  1084. * quail/cyrillic.el (cyrillic-jcuken): Use X11 keyboard layout.
  1085. 1999-06-14 Ken'ichi Handa <handa@gnu.org>
  1086. * quail/ethiopic.el ("ethiopic"): Add translation rules.
  1087. 1999-06-01 Jae-youn Chung <jay@compiler.kaist.ac.kr>
  1088. * quail/hanja3.el: Newly generated from hangul.el, hangul3.el, and
  1089. hanja.el.
  1090. 1999-05-25 Ken'ichi Handa <handa@gnu.org>
  1091. * quail/hangul3.el ("korean-hangul3"): Give MAXIMUM-SHORTEST t.
  1092. 1999-05-09 Tudor Hulubei <tudor@cs.unh.edu>
  1093. * quail/latin-pre.el ("romanian-prefix"): New input method.
  1094. ("romanian-alt-prefix"): New input method.
  1095. 1999-03-04 Kenichi Handa <handa@etl.go.jp>
  1096. * quail/latin-post.el ("spanish-postfix"): Add rule U" and u".
  1097. 1999-01-14 Kenichi Handa <handa@etl.go.jp>
  1098. * quail/japanese.el (quail-japanese-kanji-kkc): If the last char
  1099. to convert is `n', change it to Japanese Hiragana `n' before
  1100. conversion.
  1101. 1999-01-11 Kenichi Handa <handa@etl.go.jp>
  1102. * Makefile.in (MISC): Add ${srcdir}/quail/hebrew.el.
  1103. * quail/hebrew.el: New file.
  1104. 1998-12-15 Kenichi Handa <handa@etl.go.jp>
  1105. * quail/devanagari.el (quail-devanagari-compose-characters):
  1106. Adjust for the change of input method handling.
  1107. (quail-devanagari-hindi-compose-characters): Likewise.
  1108. 1998-10-15 Kenichi Handa <handa@etl.go.jp>
  1109. * Makefile.in (leim-list.el): Use `(cd foo && pwd)` instead of
  1110. `(cd foo; pwd)`.
  1111. (install): Likewise.
  1112. 1998-10-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
  1113. * quail/latin-post.el: Many doc fixes.
  1114. ("latin-1-postfix"): Add sequence for the small superscript o.
  1115. * quail/latin-pre.el: Many doc fixes.
  1116. ("latin-1-prefix"): Add sequences for the small
  1117. superscript underlined o and a.
  1118. 1998-10-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
  1119. * latin-alt.el ("latin-1-alt-postfix"): Add a method to enter the
  1120. small superscript underlined o and a.
  1121. ("italian-alt-postfix"): Change it to something useful and
  1122. different from italian-postfix.
  1123. * latin-post.el ("latin-1-postfix"): Add a method to enter the
  1124. small superscript underlined o and a.
  1125. ("italian-postfix"): Same as above.
  1126. ("italian-postfix"): Add methods to enter e with acute accent and
  1127. the >> and << symbols.
  1128. 1998-09-25 Kenichi Handa <handa@etl.go.jp>
  1129. * quail/japanese.el (quail-japanese-hankaku-update-translation):
  1130. Adjust for the change of input method handling.
  1131. 1998-09-11 Kenichi HANDA <handa@etl.go.jp>
  1132. * quail/japanese.el (quail-japanese-katakana-update-translation):
  1133. Adjust for the change of input method handling.
  1134. 1998-08-31 Kenichi Handa <handa@etl.go.jp>
  1135. * quail/tibetan.el (quail-tibetan-input-wylie): Adjust for the
  1136. change of input method handling.
  1137. (quail-tibetan-input-tibkey): Likewise.
  1138. 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
  1139. * Version 20.3 released.
  1140. 1998-08-16 Kenichi HANDA <handa@etl.go.jp>
  1141. * quail/czech.el ("czech"): Make this input method deterministic,
  1142. kbd-translate, and show-layout.
  1143. 1998-08-15 Kenichi HANDA <handa@etl.go.jp>
  1144. * quail/ethiopic.el: Fix several translation rules.
  1145. 1998-08-12 Milan Zamazal <pdm@fi.muni.cz>
  1146. * quail/czech.el: Few key sequences added to some keyboards.
  1147. 1998-08-06 Kenichi Handa <handa@etl.go.jp>
  1148. * quail/japanese.el (quail-japanese-use-double-n): New variable.
  1149. (quail-japanese-update-translation): Adjust for the change of
  1150. quail-update-translation. Now this function should return
  1151. CONTROL-FLAG.
  1152. (quail-japanese-toggle-kana): Update quail-conversion-str.
  1153. (quail-japanese-kanji-kkc): Likewise.
  1154. (quail-japanese-switch-package): Reset quail-current-str and
  1155. quail-conversion-str.
  1156. 1998-07-24 Kenichi Handa <handa@etl.go.jp>
  1157. * quail/japanese.el (quail-japanese-kanji-kkc):
  1158. Set quail-translation to nil after calling kkc-region so that
  1159. translation mode is restarted correctly.
  1160. 1998-07-21 Kenichi Handa <handa@etl.go.jp>
  1161. * quail/japanese.el (quail-japanese-kanji-kkc): Handle the case
  1162. that conversion is canceled in kkc-region.
  1163. (quail-japanese-switch-package): Fix previous change.
  1164. 1998-07-19 Kenichi Handa <handa@etl.go.jp>
  1165. * quail/japanese.el (quail-japanese-update-translation):
  1166. Handle a key which should fix the current translation and start a new
  1167. translation correctly.
  1168. (quail-japanese-toggle-kana): Set quail-translating to nil.
  1169. Don't change point.
  1170. 1998-07-15 Kenichi Handa <handa@etl.go.jp>
  1171. * quail/japanese.el (quail-japanese-kanji-kkc): Adjust for the
  1172. change of quail.el.
  1173. (quail-japanese-switch-package): Likewise.
  1174. 1998-07-03 Kenichi Handa <handa@etl.go.jp>
  1175. * quail/symbol-ksc.el: Keys for modern Korean syllables fixed.
  1176. Some keys for ancient Korean syllables are changed properly.
  1177. 1998-06-20 Kenichi Handa <handa@etl.go.jp>
  1178. * quail/ethiopic.el: Don't add hook to quail-mode-hook.
  1179. (ethio-select-a-translation): New function.
  1180. 1998-06-10 Richard Stallman <rms@psilocin.ai.mit.edu>
  1181. * Makefile.in (RUN-EMACS): Add --multibyte.
  1182. 1998-04-29 Karl Heuer <kwzh@gnu.org>
  1183. * Makefile.in (SLAVIC): Delete redundant backslash.
  1184. 1998-04-28 Richard Stallman <rms@psilocin.gnu.org>
  1185. * Makefile.in (install): Make INSTALLDIR and contents world-readable.
  1186. 1998-04-20 Kenichi Handa <handa@etl.go.jp>
  1187. * Makefile.in (SLAVIC): New macro.
  1188. (EUROPEAN): Include ${SLAVIC}.
  1189. 1998-04-14 Andreas Schwab <schwab@mescaline.gnu.org>
  1190. * Makefile.in: Prepend ${srcdir} to all non-TIT lisp file names.
  1191. (leim-list.el): Depend on ${WORLD}.
  1192. * latin-alt.el (latin-2-alt-postfix): Doc fix.
  1193. 1998-04-08 Karl Heuer <kwzh@mescaline.gnu.org>
  1194. * czech.el, slovak.el: Correct starting commentary.
  1195. 1998-04-07 Milan Zamazal <pdm@fi.muni.cz>
  1196. * quail/czech.el, quail/slovak.el: Correct starting commentary.
  1197. 1998-04-06 Andreas Schwab <schwab@gnu.org>
  1198. * lrt.el (lrt-composing-pattern-double-c): Change chars-in-string
  1199. to length.
  1200. (lrt-generate-quail-map): Change sref to aref, and make second
  1201. argument of substring a character index.
  1202. 1998-03-26 Richard Stallman <rms@psilocin.gnu.org>
  1203. * Makefile.in (${TIT}): Fix shell conditional syntax.
  1204. 1998-03-18 Kenichi Handa <handa@etl.go.jp>
  1205. * quail/latin-pre.el ("latin-1-prefix"): Fix the translation of
  1206. "/ " to "/" (instead of " ").
  1207. 1998-03-17 Richard Stallman <rms@psilocin.gnu.org>
  1208. * quail/czech.el, quail/slovak.el: New files.
  1209. 1998-03-10 Richard Stallman <rms@psilocin.gnu.org>
  1210. * Makefile.in (BUILT-EMACS): Variable renamed from EMACS.
  1211. Uses changed.
  1212. 1998-03-05 Kenichi Handa <handa@etl.go.jp>
  1213. * Makefile.in (${TIT}): To byte-compile quail packages, use just
  1214. built quail.
  1215. 1997-12-09 Koaunghi Un <koaunghi.un@zdv.uni-tuebingen.de>
  1216. * quail/hanja3.el: New file.
  1217. * quail/hanja-jis.el: Title string of the input method
  1218. "korean-hanja-jis" changed.
  1219. * quail/symbol-ksc.el: Title string of the input method
  1220. "korean-symbol" changed. Require 'korea-util.
  1221. (quail-hangul-switch-back): Delete.
  1222. * quail/hangul3.el: Require 'korea-util.
  1223. (quail-hangul-switch-to-symbol-ksc): Delete.
  1224. * quail/hanja.el: Require 'korea-util. Title string of the input
  1225. method "korean-hanja" changed.
  1226. (quail-hanja-switch-to-symbol-ksc): Delete.
  1227. * quail/hangul.el: Require 'korea-util.
  1228. (quail-hangul-switch-to-symbol-ksc): Delete.
  1229. 1997-10-23 Kenichi Handa <handa@etl.go.jp>
  1230. * quail/ethiopic.el: The title string of input method "Ethiopic"
  1231. is changed.
  1232. 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1233. * Version 20.2 released.
  1234. 1997-09-18 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  1235. * quail/latin-post.el (german): Swap y and z.
  1236. 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1237. * Version 20.1 released.
  1238. * quail/latin-alt.el (latin-2-postfix): Use : for double-acute again.
  1239. 1997-09-13 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  1240. * quail/viqr.el (vietnamese-viqr): Doc fix.
  1241. 1997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1242. * quail/latin-alt.el: New file.
  1243. 1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1244. * quail/latin-post.el: Undo previous change.
  1245. 1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1246. * quail/latin-post.el (latin-2-postfix):
  1247. Replace comma and period with `. Replace colon with /.
  1248. (latin-1-postfix): Replace comma with /.
  1249. (french-postfix): Replace comma with /.
  1250. (latin-3-postfix): Replace comma with ` and period with /.
  1251. (latin-4-postfix): Replace comma with ` and period with ~.
  1252. (latin-5-postfix): Replace comma with ` and period with /.
  1253. (turkish-postfix): Replace comma with ` and period with /.
  1254. 1997-09-10 Kenichi Handa <handa@etl.go.jp>
  1255. * quail/ethiopic.el: Don't bind keys in quail-mode-map.
  1256. The function added to quail-mode-hook turn ethio-mode on only when
  1257. input method "ethiopic" is begin used.
  1258. (ethio-prefer-ascii-space): Move to lisp/language/ethio-util.el.
  1259. (ethio-toggle-space): Likewise.
  1260. (ethio-insert-space): Likewise.
  1261. (ethio-insert-ethio-space): Likewise.
  1262. (ethio-prefer-ascii-punctuation): Likewise.
  1263. (ethio-toggle-punctuation): Likewise.
  1264. (ethio-gemination): Likewise.
  1265. ("ethiopic"): Doc-string of this Quail package modified.
  1266. Bind function keys for TRANSLATION-KEYMAP to
  1267. quail-execute-non-quail-command.
  1268. 1997-09-10 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1269. * Makefile.in (install): Use quail/* in the second tar that
  1270. copies a dir named quail.
  1271. 1997-09-03 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
  1272. * Makefile.in (install): Do not copy leim-list.el twice.
  1273. Copy `skk' subdirectory too.
  1274. 1997-09-03 Kenichi Handa <handa@etl.go.jp>
  1275. * quail/cyrillic.el: For each package, pass t for the SIMPLE
  1276. argument to quail-define-package.
  1277. * quail/cyril-jis.el: Likewise
  1278. * quail/greek.el: Likewise.
  1279. * quail/ipa.el: Likewise.
  1280. * quail/lao.el: Likewise.
  1281. * quail/lrt.el: Likewise.
  1282. * quail/thai.el: Likewise.
  1283. * quail/viqr.el: Likewise.
  1284. 1997-08-30 Naoto TAKAHASHI <ntakahas@etl.go.jp>
  1285. * quail/ethiopic.el ("ethiopic"): Doc-string fixed. Change the arg
  1286. TRANSLATION-KEYS.
  1287. (quail-mode-map): Change binding for ethio-insert-ethio-space.
  1288. (quail-mode-hook): Check the current Quail package name.
  1289. * quail/latin-post.el: Add rules for canceling accents by typing
  1290. two accent keys (e.g. a~ => a-tilde, a~~ => a~) to all Quail
  1291. packages.
  1292. 1997-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1293. * quail/latin-post.el, quail/latin-pre.el: For each package,
  1294. pass t for the SIMPLE argument to quail-define-package.
  1295. 1997-08-28 Kenichi Handa <handa@etl.go.jp>
  1296. * Makefile.in (dotdot): This macro deleted.
  1297. (SUBDIRS): Exclude skk.
  1298. (all): Substitute ${WORLD} to ${TIT}.
  1299. (%.el): This target deleted.
  1300. (${TIT}): Check existence of `quail' subdirectory.
  1301. (leim-list.el): Do not check old files.
  1302. (install): If ${srcdir} is different from the current directory,
  1303. copy also files under ${srcdir}.
  1304. 1997-08-26 Kenichi Handa <handa@etl.go.jp>
  1305. * Makefile.in: Re-arrange macros so that the macro TIT contains
  1306. only Quial packages generated from CXTERM dictionaries, and the
  1307. macro NON-TIT contains only Quial packages distributed with Emacs.
  1308. (install): Do not use -h option for tar, instead copy ${NON-TIT}
  1309. and ${TIT} separately.
  1310. 1997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1311. * Makefile.in (install): Discard extra data in tar | tar command.
  1312. 1997-08-23 Kenichi Handa <handa@etl.go.jp>
  1313. * quail/devanagari.el (quail-devanagari-compose-characters):
  1314. Fix previous change.
  1315. (quail-devanagari-hindi-compose-characters): Fix previous change.
  1316. * quail/japanese.el (quail-japanese-kkc-mode-exit): Fix previous
  1317. change.
  1318. 1997-08-22 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
  1319. * Makefile.in (leim-list.el): Fix previous change.
  1320. * quail/thai.el (thai-keyboard-mapping-alist): Some entry corrected.
  1321. 1997-08-21 Kenichi HANDA <handa@etl.go.jp>
  1322. * quail/py-punct-b5.el: Name changed from py-punct-b5.el.
  1323. * quail/tsang-b5.el: Name changed from tsangchi-b5.el.
  1324. * quail/tsang-cns.el: Name changed from tsangchi-cns.el.
  1325. * Makefile.in (install): Just copy leim-list.el instead of running
  1326. update-leim-list-file on ${INSTALLDIR}.
  1327. (CHINESE-BIG5): File name change: tsangchi-b5.el -> tsang-b5.el,
  1328. py-punct-b5.el -> pypunct-b5.el.
  1329. (CHINESE-CNS): File name change: tsangchi-cns.el -> tsang-cns.el.
  1330. (leim-list.el): Delete old files not contained in ${WORLD}.
  1331. * quail/japanese.el (quail-japanese-kkc-mode-exit):
  1332. Run input-method-after-insert-chunk-hook.
  1333. * quail/thai.el (thai-keyboard-mapping-alist): Some entry corrected.
  1334. 1997-08-19 Kenichi Handa <handa@etl.go.jp>
  1335. * quail/hangul.el ("korean-hangul"): Doc-string of this Quail
  1336. package fixed.
  1337. 1997-08-18 Kenichi Handa <handa@etl.go.jp>
  1338. * quail/japanese.el (quail-japanese-toggle-kana): Don't call
  1339. throw.
  1340. (quail-japanese-kanji-kkc): Completely re-written.
  1341. (quail-japanese-kkc-mode-exit): New function.
  1342. (quail-japanese-switch-package): Call activate-input-method
  1343. instead of select-input-method.
  1344. * quail/thai.el (thai-consonant-input): Typo fixed.
  1345. * quail/devanagari.el (quail-devanagari-compose-characters):
  1346. Do not call throw.
  1347. (quail-devanagari-hindi-compose-characters): Likewise.
  1348. * quail/hangul.el (quail-hangul-switch-to-symbol-ksc):
  1349. Call activate-input-method instead of select-input-method.
  1350. * quail/hangul3.el (quail-hangul-switch-to-symbol-ksc): Likewise.
  1351. * quail/symbol-ksc.el (quail-hangul-switch-back): Likewise.
  1352. Use input-method-history instead of previous-input-method.
  1353. 1997-08-16 Valery Alexeev <valery@domovoy.math.uga.edu>
  1354. * quail/cyrillic.el (cyrillic-translit-bulgarian): New input method.
  1355. 1997-08-16 Kenichi Handa <handa@etl.go.jp>
  1356. * quail/lrt.el (lrt-vowel-table): Some elements corrected.
  1357. ("lao-lrt"): Doc-string of this Quail package modified.
  1358. Some translation rules added.
  1359. * quail/lao.el (lao-keyboard-mapping): Some elements corrected.
  1360. (lao-quail-define-rules): Some translation rules corrected.
  1361. 1997-08-11 Kenichi Handa <handa@etl.go.jp>
  1362. * quail/lrt.el: Some rules added for Quail package "lao-lrt".
  1363. (lrt-vowel-table): The entry for "aM" corrected.
  1364. 1997-08-07 Kenichi Handa <handa@etl.go.jp>
  1365. * quail/lrt.el: Change title string of input method "lao-lrt".
  1366. (lrt-single-consonant-table): Several key sequence changed.
  1367. (lrt-composing-pattern-double-c): Handle a consonant with
  1368. semi-vowel-lower correctly.
  1369. (lrt-handle-maa-sakod): Do not reset quail-current-key.
  1370. (lrt-handle-tone-mark): Check the existence of double consonant
  1371. correctly.
  1372. * quail/lao.el: Change title string of input method "Lao".
  1373. 1997-08-04 Valery Alexeev <valery@domovoy.math.uga.edu>
  1374. * quail/cyrillic.el (cyrillic-translit): Doc-string of the package
  1375. modified. Several translation rules modified.
  1376. 1997-08-04 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
  1377. * quail/cyrillic.el: Move Quail package cyrillic-jis-russian to
  1378. quail/cyril-jis.el.
  1379. * quail/cyril-jis.el: New file.
  1380. * Makefile.in (RUSSIAN): Add quail/cyril-jis.el.
  1381. 1997-08-01 Kenichi Handa <handa@etl.go.jp>
  1382. * quail/ethiopic.el: In quail-mode-map, bind
  1383. ethio-insert-ethio-space Shift-SPACE. Add translation rules to
  1384. Quail package "ethiopic".
  1385. 1997-08-01 Valery Alexeev <valery@domovoy.math.uga.edu>
  1386. * quail/cyrillic.el (cyrillic-translit): New input method.
  1387. 1997-07-25 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
  1388. * quail/tibetan.el: New file.
  1389. * quail/py-punct.el: Require 'quail.
  1390. * quail/py-punct-b5.el: Require 'quail.
  1391. * quail/ethiopic.el: Change Quail package name to "ethiopic".
  1392. (ethio-toggle-punctuation): Give "ethiopic" to quail-defrule.
  1393. * Makefile.in (TIT): New variable, concatenation of TIT-GB and
  1394. TIT-BIG5.
  1395. (RUN-EMACS): Do not set EMACSLOADPATH.
  1396. (ASIA): Include TIBETAN.
  1397. (all): Remove stamp-bytecomp from dependency list.
  1398. ({$TIT}): New target, substitutes the target ${TIT-GB} ${TIT-BIG5}.
  1399. (%.el): Make a link for byte-compiled file too.
  1400. (stamp-bytecomp): Target deleted.
  1401. (leim-list.el): Run Emacs with loading quail.
  1402. (install-XXX): These targets deleted.
  1403. (install): Remove files under INSTALLDIR before copying new files.
  1404. Run Emacs with loading quail.
  1405. (clean mostlyclean): Remove only generated files.
  1406. 1997-07-24 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
  1407. * Makefile.in (stamp-bytecomp): Fix shell conditional.
  1408. (clean): Fix shell conditional.
  1409. 1997-07-21 Jim Meyering <meyering@eng.ascend.com>
  1410. * Makefile.in: Use @LN_S@, not ln -s, in case no symlink support.
  1411. (clean): Absence of ./Makefile.in is criterion for deleting skkdic.elc.
  1412. 1997-07-17 Ken'ichi Handa <handa@psilocin.gnu.ai.mit.edu>
  1413. * Makefile.in: Modified to avoid *.el files being regarded
  1414. as intermediate files and deleted by GNU make.
  1415. * quail/lrt.el (lrt-vowel-table): Change "ow" -> "ao", "am" -> "arm".
  1416. (lrt-handle-maa-sakod): Correctly handle the case that
  1417. quail-current-data is nil.
  1418. (lrt-handle-tone-mark): Fix bug of handling key sequence "hhai" +
  1419. tone.
  1420. 1997-07-15 Kenichi Handa <handa@etl.go.jp>
  1421. * quail/py-punct.el: New file.
  1422. * quail/py-punct-b5.el: New file.
  1423. * quail/japanese.el: Doc-string of Quail package japanese modified.
  1424. * Makefile.in: Rules re-written to avoid tricky code.
  1425. (CHINESE-GB): Include quail/py-punct.elc.
  1426. (CHINESE-BIG5): Include quail/py-punct-b5.elc.
  1427. 1997-07-10 Kenichi Handa <handa@etl.go.jp>
  1428. * quail/latin-pre.el: Change titles of quail packages.
  1429. * quail/latin-post.el: Likewise.
  1430. ;; Local Variables:
  1431. ;; coding: utf-8
  1432. ;; End:
  1433. Copyright (C) 1997-1999, 2001-2012 Free Software Foundation, Inc.
  1434. This file is part of GNU Emacs.
  1435. GNU Emacs is free software: you can redistribute it and/or modify
  1436. it under the terms of the GNU General Public License as published by
  1437. the Free Software Foundation, either version 3 of the License, or
  1438. (at your option) any later version.
  1439. GNU Emacs is distributed in the hope that it will be useful,
  1440. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1441. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1442. GNU General Public License for more details.
  1443. You should have received a copy of the GNU General Public License
  1444. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.