From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Changes in mapconv Date: Fri, 12 Jun 2009 22:58:03 -0400 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1244861900 17808 80.91.229.12 (13 Jun 2009 02:58:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 13 Jun 2009 02:58:20 +0000 (UTC) Cc: emacs-devel@gnu.org To: handa@m17n.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 13 04:58:17 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MFJRg-000385-Dh for ged-emacs-devel@m.gmane.org; Sat, 13 Jun 2009 04:58:16 +0200 Original-Received: from localhost ([127.0.0.1]:55166 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MFJRf-0000lE-Iw for ged-emacs-devel@m.gmane.org; Fri, 12 Jun 2009 22:58:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MFJRb-0000l9-4n for emacs-devel@gnu.org; Fri, 12 Jun 2009 22:58:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MFJRV-0000kf-PG for emacs-devel@gnu.org; Fri, 12 Jun 2009 22:58:09 -0400 Original-Received: from [199.232.76.173] (port=50148 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MFJRV-0000kc-Kt for emacs-devel@gnu.org; Fri, 12 Jun 2009 22:58:05 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:59394) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MFJRV-0002yU-7d for emacs-devel@gnu.org; Fri, 12 Jun 2009 22:58:05 -0400 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MFJRT-00076Q-Ti; Fri, 12 Jun 2009 22:58:03 -0400 In-reply-to: (emacs-diffs-request@gnu.org) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:111474 Archived-At: > Date: Fri, 12 Jun 2009 03:31:00 -0400 > From: emacs-diffs-request@gnu.org > Reply-To: emacs-diffs@gnu.org > > RCS file: /cvsroot/emacs/emacs/admin/charsets/mapconv,v > retrieving revision 1.5 > retrieving revision 1.6 > diff -u -b -r1.5 -r1.6 > --- mapconv 8 Jan 2009 04:24:45 -0000 1.5 > +++ mapconv 12 Jun 2009 07:22:48 -0000 1.6 > @@ -30,34 +30,42 @@ > # $1: source map file > # $2: address pattern for sed (optionally with substitution command) > # $3: format of source map file > -# GLIBC-1 GLIBC-2 GLIBC-2-7 CZYBORRA IANA UNICODE YASUOKA MICROSOFT > +# GLIBC-1 GLIBC-2 GLIBC-2-7 CZYBORRA IANA UNICODE YASUOKA > [...] > YASUOKA) > - SOURCE="http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/.../${BASE}";; > - MICROSOFT) > - SOURCE="http://www.microsoft.com/globaldev/reference/oem/${BASE}";; > + BASE="$BASE.Z"; > + SOURCE="http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/CJKtable/${BASE}";; > KANJI-DATABASE) Why were the MICROSOFT parts removed? The log message does not reveal any reason, nor even tells about the removal. Btw, is there any documentation on how to add support for character maps not in the current CVS? The only information I see is this comment in the Makefile: # If your system doesn't have the directory /usr/share/i18n/charmaps, # get the source of the latest glibc, gzip all the charmap files in # the directory "localedate/charmaps", and set the variable # GLIBC_CHARMAPS to that directory. This has two disadvantages: . You have no way of adding a charmap that is not in the glibc sources. . Downloading the humongous glibc distro just to get a small part of it is not my idea of fun. Suppose I wanted to add codepage 853 support to Emacs: how would I go about doing that?