+2004-05-08 Andreas Schwab <schwab@suse.de>
+
+ * international/subst-ksc.el: Fix references to utf-translate-cjk
+ into utf-translate-cjk-mode.
+ * international/subst-big5.el: Likewise.
+ * international/subst-gb2312.el: Likewise.
+ * international/subst-jis.el: Likewise.
+ * international/utf-16.el: Likewise.
+ * international/utf-8.el: Likewise.
+
2004-05-08 John Wiegley <johnw@newartisans.com>
* iswitchb.el (iswitchb-use-virtual-buffers): Added support for
;;; subst-big5.el --- Unicode/GB2312 translation -*-coding: big5;-*-
-;; Copyright (C) 2002 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <fx@gnu.org>
;; Keywords: i18n
;;; Commentary:
;; Provides translation tables between Unicode and chinese-big5 for
-;; use by the `utf-translate-cjk' option. See subst-jis.el for the
+;; use by the `utf-translate-cjk-mode' option. See subst-jis.el for the
;; method used.
;;; Code:
;;; subst-gb2312.el --- Unicode/GB2312 translation -*-coding: euc-china;-*-
-;; Copyright (C) 2002 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <fx@gnu.org>
;; Keywords: i18n
;;; Commentary:
;; Provides translation tables between Unicode and chinese-gb2312 for
-;; use by the `utf-translate-cjk' option. See subst-jis.el for the
+;; use by the `utf-translate-cjk-mode' option. See subst-jis.el for the
;; method used.
;;; Code:
;;; subst-jis.el --- Unicode/JISX translation -*-coding: euc-jp;-*-
-;; Copyright (C) 2002 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <fx@gnu.org>
;; Keywords: i18n
;; Provides translation tables between Unicode and
;; japanese-jisx0208/japanese-jisx0212 charsets for use by the
-;; `utf-translate-cjk' option.
+;; `utf-translate-cjk-mode' option.
;;; Code:
;;; subst-ksc.el --- Unicode/KSC-5601 translation -*-coding: euc-kr;-*-
-;; Copyright (C) 2002 Free Software Foundation, Inc.
+;; Copyright (C) 2002, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <fx@gnu.org>
;; Keywords: i18n
;;; Commentary:
;; Provides translation tables between Unicode and korean-ksc5601 for
-;; use by the `utf-translate-cjk' option. See subst-jis.el for the
+;; use by the `utf-translate-cjk-mode' option. See subst-jis.el for the
;; method used.
;;; Code:
;;; utf-16.el --- UTF-16 encoding/decoding
-;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <fx@gnu.org>
;; Keywords: Unicode, UTF-16, i18n
(dependency unify-8859-on-encoding-mode
unify-8859-on-decoding-mode
utf-fragment-on-decoding
- utf-translate-cjk)))
+ utf-translate-cjk-mode)))
(make-coding-system
'mule-utf-16be 4 ?u
(dependency unify-8859-on-encoding-mode
unify-8859-on-decoding-mode
utf-fragment-on-decoding
- utf-translate-cjk)))
+ utf-translate-cjk-mode)))
(make-coding-system
'mule-utf-16le-with-signature 4 ?u
(dependency unify-8859-on-encoding-mode
unify-8859-on-decoding-mode
utf-fragment-on-decoding
- utf-translate-cjk)))
+ utf-translate-cjk-mode)))
(make-coding-system
'mule-utf-16be-with-signature 4 ?u
(dependency unify-8859-on-encoding-mode
unify-8859-on-decoding-mode
utf-fragment-on-decoding
- utf-translate-cjk)))
+ utf-translate-cjk-mode)))
(make-coding-system
'mule-utf-16 4 ?u
(dependency unify-8859-on-encoding-mode
unify-8859-on-decoding-mode
utf-fragment-on-decoding
- utf-translate-cjk)
+ utf-translate-cjk-mode)
(post-read-conversion . mule-utf-16-post-read-conversion)))
)
;;; 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.
(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
(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
(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)