From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Unify on encoding Date: Sun, 17 Mar 2002 17:28:57 -0500 Sender: emacs-devel-admin@gnu.org Message-ID: <200203172228.g2HMSvX26032@rum.cs.yale.edu> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1016404272 1026 127.0.0.1 (17 Mar 2002 22:31:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 17 Mar 2002 22:31:12 +0000 (UTC) Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16mjBI-0000GS-00 for ; Sun, 17 Mar 2002 23:31:12 +0100 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 16mjFH-0002oS-00 for ; Sun, 17 Mar 2002 23:35:19 +0100 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16mjAV-0005yq-00; Sun, 17 Mar 2002 17:30:23 -0500 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16mj98-0005mr-00 for ; Sun, 17 Mar 2002 17:28:58 -0500 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.11.6/8.11.6) id g2HMSvX26032; Sun, 17 Mar 2002 17:28:57 -0500 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: emacs-devel@gnu.org Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.5 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:1996 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:1996 Is there any objection to the patch below ? It turns on unify-8859-on-encoding-mode by default (in loadup.el) which has the effect of allowing a wider choice of coding-systems when saving a file. It should not have any other effect (i.e. if you choose one of the coding-systems which would be available even without unification-on-encoding, the resulting output is exactly the same). With it, you can load a latin-9 file and save it as latin-1 or utf-8. A second request (but separate) is whether there is any objection to removing the ability to turn off unify-8859-on-encoding-mode. Stefan Index: loadup.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/loadup.el,v retrieving revision 1.118 diff -u -u -b -r1.118 loadup.el --- loadup.el 20 Jan 2002 15:35:09 -0000 1.118 +++ loadup.el 17 Mar 2002 22:26:04 -0000 @@ -112,6 +121,10 @@ (load "language/misc-lang") (load "language/utf-8-lang") (load "language/georgian") + +(load "international/ucs-tables") +(unify-8859-on-encoding-mode 1) + (update-coding-systems-internal) (load "indent") _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://mail.gnu.org/mailman/listinfo/emacs-devel