mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
FLAGS arguments for make-coding-system changed.
This commit is contained in:
parent
7e1710d63b
commit
7fbf766f70
2 changed files with 4 additions and 4 deletions
|
|
@ -104,7 +104,7 @@
|
|||
;; So people who use koi8 for languages other than Russian
|
||||
;; will have to forgive us.
|
||||
?R "KOI8 8-bit encoding for Cyrillic (MIME: KOI8-R)"
|
||||
(cons ccl-decode-koi8 ccl-encode-koi8)
|
||||
'(ccl-decode-koi8 . ccl-encode-koi8)
|
||||
'((safe-charsets ascii cyrillic-iso8859-5)
|
||||
(mime-charset . koi8-r)))
|
||||
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
(make-coding-system
|
||||
'cyrillic-alternativnyj 4 ?A
|
||||
"ALTERNATIVNYJ 8-bit encoding for Cyrillic"
|
||||
(cons ccl-decode-alternativnyj ccl-encode-alternativnyj)
|
||||
'(ccl-decode-alternativnyj . ccl-encode-alternativnyj)
|
||||
'((safe-charsets ascii cyrillic-iso8859-5)))
|
||||
|
||||
(define-coding-system-alias 'alternativnyj 'cyrillic-alternativnyj)
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ Both tables are indexed by the position code of Vietnamese characters.")
|
|||
(make-coding-system
|
||||
'vietnamese-viscii 4 ?V
|
||||
"8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)"
|
||||
(cons ccl-decode-viscii ccl-encode-viscii)
|
||||
'(ccl-decode-viscii . ccl-encode-viscii)
|
||||
'((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper)
|
||||
(mime-charset . viscii)))
|
||||
|
||||
|
|
@ -212,7 +212,7 @@ Both tables are indexed by the position code of Vietnamese characters.")
|
|||
(make-coding-system
|
||||
'vietnamese-vscii 4 ?v
|
||||
"8-bit encoding for Vietnamese VSCII-1"
|
||||
(cons ccl-decode-vscii ccl-encode-vscii)
|
||||
'(ccl-decode-vscii . ccl-encode-vscii)
|
||||
'((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper)))
|
||||
|
||||
(define-coding-system-alias 'vscii 'vietnamese-vscii)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue