]> git.eshelyaron.com Git - emacs.git/commitdiff
(ebcdic-us, ebcdic-uk): New coding systems.
authorDave Love <fx@gnu.org>
Fri, 17 May 2002 20:13:29 +0000 (20:13 +0000)
committerDave Love <fx@gnu.org>
Fri, 17 May 2002 20:13:29 +0000 (20:13 +0000)
lisp/language/english.el

index cbfd206c20401daf59d10ff2e0dd0b709b05593a..c7426b4e9cd6bfe8bcc367917cb98dbf67c9bbfc 100644 (file)
 Nothing special is needed to handle English.")
             ))
 
+;; Mostly because we can now...
+(define-coding-system 'ebcdic-us
+  "US version of EBCDIC"
+  :coding-type 'charset
+  :charset-list '(ebcdic-us)
+  :mnemonic ?*)
+
+(define-coding-system 'ebcdic-uk
+  "UK version of EBCDIC"
+  :coding-type 'charset
+  :charset-list '(ebcdic-uk)
+  :mnemonic ?*)
+
 ;; Make "ASCII" an alias of "English" language environment.
 (set-language-info-alist
  "ASCII" (cdr (assoc "English" language-info-alist)))