all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* alphabets resp. locales
@ 2010-08-11  7:51 Andreas Röhler
  2010-08-11 11:31 ` Peter Dyballa
  2010-08-13  3:04 ` Kevin Rodgers
  0 siblings, 2 replies; 9+ messages in thread
From: Andreas Röhler @ 2010-08-11  7:51 UTC (permalink / raw
  To: help-gnu-emacs


Hi,

is there a way to get the chars of alphabets with resp. to locales?

A general way to get all chars of the french alphabet for example?

Below some work-around for the german alphabet.

Comments welcome

Andreas

--
https://code.launchpad.net/~a-roehler/python-mode
https://code.launchpad.net/s-x-emacs-werkstatt/

;;;;;;;;;;

(defun german-alphabet ()
   "Returns chars of german alphabet. "
   (interactive)
   (let (gebundene-staebe)
     (loop for i upfrom 97 to 122 do
           (setq gebundene-staebe (concat gebundene-staebe (format "%c" 
i))))
     (loop for i upfrom 65 to 90 do
           (setq gebundene-staebe (concat gebundene-staebe (format "%c" 
i))))
     (setq gebundene-staebe (concat gebundene-staebe "äöüÄÖÜß"))
     (when (interactive-p) (message "%s" gebundene-staebe))
     gebundene-staebe))




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2010-08-13  6:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.1.1281513191.2982.help-gnu-emacs@gnu.org>
2010-08-11 15:45 ` alphabets resp. locales Stefan Monnier
2010-08-11  7:51 Andreas Röhler
2010-08-11 11:31 ` Peter Dyballa
2010-08-11 11:56   ` Andreas Röhler
2010-08-11 13:05     ` Peter Dyballa
2010-08-11 13:48       ` Andreas Röhler
2010-08-11 14:52         ` Peter Dyballa
2010-08-13  3:04 ` Kevin Rodgers
2010-08-13  6:22   ` Andreas Röhler

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.