all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jure Cuhalev <gandalf@owca.info>
Subject: slovenian support
Date: Wed, 23 Mar 2005 23:38:38 +0100	[thread overview]
Message-ID: <4241EFEE.9050808@owca.info> (raw)

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

Attached are two trivial patches that add support for slovenian keyboard 
and slovenian language.

regards

Jure Cuhalev

[-- Attachment #2: iso-acc.el.patch --]
[-- Type: text/x-patch, Size: 2085 bytes --]

--- iso-acc.el	2001-10-30 17:11:34.000000000 +0100
+++ iso-acc.el.sl	2005-03-23 23:25:56.498167000 +0100
@@ -143,6 +143,41 @@
 	 (?\  . ?~))
      (?, (?c . ?\347) (?C . ?\307) (?, . ?,)))
 
+    ("slovenian" latin-iso8859-2
+     (?' (?A . ?\301) (?C . ?\306) (?D . ?\320) (?E . ?\311) (?I . ?\315)
+         (?L . ?\305) (?N . ?\321) (?O . ?\323) (?R . ?\300) (?S . ?\246)
+         (?U . ?\332) (?Y . ?\335) (?Z . ?\254)
+         (?a . ?\341) (?c . ?\346) (?d . ?\360) (?e . ?\351) (?i . ?\355)
+         (?l . ?\345) (?n . ?\361) (?o . ?\363) (?r . ?\340) (?s . ?\266)
+         (?u . ?\372) (?y . ?\375) (?z . ?\274)
+         (?' . ?\264) (?\  . ?'))
+     (?` (?A . ?\241) (?C . ?\307) (?E . ?\312) (?L . ?\243) (?S . ?\252)
+         (?T . ?\336) (?Z . ?\257)
+         (?a . ?\261) (?l . ?\263) (?c . ?\347) (?e . ?\352) (?s . ?\272)
+         (?t . ?\376) (?z . ?\277)
+         (?` . ?\252)
+         (?. . ?\377) (?\  . ?`))
+     (?^ (?A . ?\302) (?I . ?\316) (?O . ?\324)
+         (?a . ?\342) (?i . ?\356) (?o . ?\364)
+         (?^ . ?^)                      ; no special code?
+         (?\  . ?^))
+     (?\" (?C . ?\310) (?S . ?\251) (?Z . ?\256)
+          (?c . ?\350) (?s . ?\271) (?z . ?\276)
+          (?A . ?\304) (?E . ?\313) (?O . ?\326) (?U . ?\334)
+          (?a . ?\344) (?e . ?\353) (?o . ?\366) (?u . ?\374)
+          (?\" . ?\250)
+          (?\  . ?\"))
+     (?~ (?A . ?\303) (?C . ?\310) (?D . ?\317) (?L . ?\245) (?N . ?\322)
+         (?O . ?\325) (?R . ?\330) (?S . ?\251) (?T . ?\253) (?U . ?\333)
+         (?Z . ?\256)
+         (?a . ?\343) (?c . ?\350) (?d . ?\357) (?l . ?\265) (?n . ?\362)
+         (?o . ?\365) (?r . ?\370) (?s . ?\271) (?t . ?\273) (?u . ?\373)
+         (?z . ?\276)
+         (?v . ?\242)                   ; v accent
+         (?\~ . ?\242)                  ; v accent
+         (?\. . ?\270)                  ; cedilla accent
+         (?\  . ?~)))
+
     ("spanish"
      (?' (?A . ?\301) (?E . ?\311) (?I . ?\315) (?O . ?\323) (?U . ?\332)
 	 (?a . ?\341) (?e . ?\351) (?i . ?\355) (?o . ?\363) (?u . ?\372)

[-- Attachment #3: ispell.el.patch --]
[-- Type: text/x-patch, Size: 910 bytes --]

--- ispell.el	2002-01-22 08:36:53.000000000 +0100
+++ ispell.el.sl	2005-03-23 23:29:20.881096072 +0100
@@ -623,6 +623,10 @@
     "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
     "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
     "" nil ("-B" "-d" "slovak") nil iso-8859-2)))
+   ("slovenian"
+    "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
+    "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
+    "" nil ("-B" "-d" "slovenian") nil iso-8859-2)))
 
 ;;;###autoload
 (defcustom ispell-dictionary-alist

[-- Attachment #4: Type: text/plain, Size: 149 bytes --]

_______________________________________________
Bug-gnu-emacs mailing list
Bug-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs

             reply	other threads:[~2005-03-23 22:38 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-23 22:38 Jure Cuhalev [this message]
2005-03-24 10:48 ` slovenian support Juri Linkov
2005-03-26 10:39   ` Jure Cuhalev
2005-03-27  3:53     ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2005-04-27  9:06 Jure Cuhalev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4241EFEE.9050808@owca.info \
    --to=gandalf@owca.info \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.