From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Zhang Wei Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.devel Subject: emacs-unicode-2: `locale-preferred-coding-systems' improvements on chinese locales Date: Thu, 27 Oct 2005 14:06:48 +0800 Message-ID: <87br1bijd3.fsf@gmail.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1130393586 17305 80.91.229.2 (27 Oct 2005 06:13:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 27 Oct 2005 06:13:06 +0000 (UTC) Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Thu Oct 27 08:13:05 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EV0yu-0007TY-5H for gebp-emacs-pretest-bug@gmane.org; Thu, 27 Oct 2005 08:11:20 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EV0yt-00037N-5U for gebp-emacs-pretest-bug@gmane.org; Thu, 27 Oct 2005 02:11:19 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EV0uY-0001JT-BR for emacs-pretest-bug@gnu.org; Thu, 27 Oct 2005 02:06:50 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EV0uU-0001Hg-0a for emacs-pretest-bug@gnu.org; Thu, 27 Oct 2005 02:06:48 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EV0uT-0001Gz-5z for emacs-pretest-bug@gnu.org; Thu, 27 Oct 2005 02:06:45 -0400 Original-Received: from [64.233.162.202] (helo=zproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EV0uT-0000oH-1A for emacs-pretest-bug@gnu.org; Thu, 27 Oct 2005 02:06:45 -0400 Original-Received: by zproxy.gmail.com with SMTP id k1so203176nzf for ; Wed, 26 Oct 2005 23:06:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:to:subject:from:date:message-id:mime-version:content-type; b=h2s3jkHaIKc+btfmqEXYl6IUIdlMh9RIwKjrLjDgV4PXPoMV7bN4O1zt7uYtmdYMSz+mRs2suBUhXToQzusAHXQNsN/q3TuJhm91zJioliS90PjK47bvZ/jg3FA991XFS/+4NUkcggDk+/AjSFWV250DNImgTtgsustxUEXwMzs= Original-Received: by 10.37.13.7 with SMTP id q7mr1775636nzi; Wed, 26 Oct 2005 23:06:44 -0700 (PDT) Original-Received: from dorm ( [59.66.78.64]) by mx.gmail.com with ESMTP id 18sm1303308nzo.2005.10.26.23.06.41; Wed, 26 Oct 2005 23:06:44 -0700 (PDT) Original-Received: from brep by dorm with local (Exim 4.54) id 1EV0uW-00048Z-HL; Thu, 27 Oct 2005 14:06:48 +0800 Original-To: emacs-devel@gnu.org, emacs-pretest-bug@gnu.org X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for CVS Emacs." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.pretest.bugs:9753 gmane.emacs.devel:44956 Archived-At: The `locale-preferred-coding-systems' variable should also be improved for chinese locales. *** lisp/international/mule-cmds.el.~1.242.2.25.~ 2005-09-26 06:07:01.000000000 +0800 --- lisp/international/mule-cmds.el 2005-10-27 13:58:14.000000000 +0800 *************** *** 2280,2293 **** ("koi8-?r" . koi8-r) ("koi8-?u" . koi8-u) ("tcvn" . tcvn) ("big5" . big5) ("euc-?tw" . euc-tw) ! ;; We don't support GBK, but as it is upper compatible with ! ;; GB-2312, we setup the default coding system to gb2312. ! ("gbk" . gb2312) ! ;; We don't support BIG5-HKSCS, but as it is upper compatible with ! ;; BIG5, we setup the default coding system to big5. ! ("big5hkscs" . big5) ("ja.*[._]euc" . japanese-iso-8bit) ("ja.*[._]jis7" . iso-2022-jp) ("ja.*[._]pck" . japanese-shift-jis) --- 2280,2292 ---- ("koi8-?r" . koi8-r) ("koi8-?u" . koi8-u) ("tcvn" . tcvn) + ("big5[-_]?hkscs" . big5-hkscs) ("big5" . big5) ("euc-?tw" . euc-tw) ! ("euc-?cn" .euc-cn) ! ("gb2312" . gb2312) ! ("gbk" . gbk) ! ("gb18030" . gb18030) ("ja.*[._]euc" . japanese-iso-8bit) ("ja.*[._]jis7" . iso-2022-jp) ("ja.*[._]pck" . japanese-shift-jis)