mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-11 02:10:35 -08:00
Give proper SAFE-CHARSET argument in
each call of make-coding-system.
This commit is contained in:
parent
6cb92c3a63
commit
c8f0d090d0
1 changed files with 6 additions and 3 deletions
|
|
@ -203,21 +203,24 @@ 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))
|
||||
(cons ccl-decode-viscii ccl-encode-viscii)
|
||||
'(ascii vietnamese-viscii-lower vietnamese-viscii-upper))
|
||||
|
||||
(define-coding-system-alias 'viscii 'vietnamese-viscii)
|
||||
|
||||
(make-coding-system
|
||||
'vietnamese-vscii 4 ?v
|
||||
"8-bit encoding for Vietnamese VSCII-1"
|
||||
(cons ccl-decode-vscii ccl-encode-vscii))
|
||||
(cons ccl-decode-vscii ccl-encode-vscii)
|
||||
'(ascii vietnamese-viscii-lower vietnamese-viscii-upper))
|
||||
|
||||
(define-coding-system-alias 'vscii 'vietnamese-vscii)
|
||||
|
||||
(make-coding-system
|
||||
'vietnamese-viqr 0 ?q
|
||||
"Vietnamese latin transcription (VIQR)"
|
||||
nil)
|
||||
nil
|
||||
'(ascii vietnamese-viscii-lower vietnamese-viscii-upper))
|
||||
(coding-system-put 'vietnamese-viqr 'post-read-conversion
|
||||
'viqr-post-read-conversion)
|
||||
(coding-system-put 'vietnamese-viqr 'pre-write-conversion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue