diff lisp/international/utf-8.el @ 55437:6e677a935fe9

Fix references to utf-translate-cjk into utf-translate-cjk-mode.
author Andreas Schwab <schwab@suse.de>
date Sat, 08 May 2004 14:36:07 +0000
parents d61b01de8cdf
children 81dbb510a1db
line wrap: on
line diff
--- a/lisp/international/utf-8.el	Sat May 08 13:04:29 2004 +0000
+++ b/lisp/international/utf-8.el	Sat May 08 14:36:07 2004 +0000
@@ -1,6 +1,6 @@
 ;;; utf-8.el --- UTF-8 decoding/encoding support -*- coding: iso-2022-7bit -*-
 
-;; Copyright (C) 2001 Electrotechnical Laboratory, JAPAN.
+;; Copyright (C) 2001, 2004 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 
@@ -97,7 +97,7 @@
 (defvar ucs-mule-cjk-to-unicode (make-hash-table :test 'eq)
   "Hash table mapping Emacs CJK character sets to Unicode code points.
 
-If `utf-translate-cjk' is non-nil, this table populates the
+If `utf-translate-cjk-mode' is non-nil, this table populates the
 translation-hash-table named `utf-subst-table-for-encode'.")
 
 (define-translation-hash-table 'utf-subst-table-for-encode
@@ -106,7 +106,7 @@
 (defvar ucs-unicode-to-mule-cjk (make-hash-table :test 'eq)
   "Hash table mapping Unicode code points to Emacs CJK character sets.
 
-If `utf-translate-cjk' is non-nil, this table populates the
+If `utf-translate-cjk-mode' is non-nil, this table populates the
 translation-hash-table named `utf-subst-table-for-decode'.")
 
 (define-translation-hash-table 'utf-subst-table-for-decode
@@ -814,7 +814,7 @@
    (dependency unify-8859-on-encoding-mode
 	       unify-8859-on-decoding-mode
 	       utf-fragment-on-decoding
-	       utf-translate-cjk)))
+	       utf-translate-cjk-mode)))
 
 (define-coding-system-alias 'utf-8 'mule-utf-8)