summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/language/cyrillic.el4
-rw-r--r--lisp/language/vietnamese.el4
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/language/cyrillic.el b/lisp/language/cyrillic.el
index 70ec0e4ebce..924b8aa826e 100644
--- a/lisp/language/cyrillic.el
+++ b/lisp/language/cyrillic.el
@@ -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)
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el
index 8b24c313fe5..bd3dfb4c0f0 100644
--- a/lisp/language/vietnamese.el
+++ b/lisp/language/vietnamese.el
@@ -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)