From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Loading souce Elisp faster Date: Mon, 25 Feb 2013 02:53:39 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1361757254 4922 80.91.229.3 (25 Feb 2013 01:54:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Feb 2013 01:54:14 +0000 (UTC) Cc: Emacs-Devel devel To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 25 02:54:37 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U9nH2-0006vz-UI for ged-emacs-devel@m.gmane.org; Mon, 25 Feb 2013 02:54:37 +0100 Original-Received: from localhost ([::1]:53942 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9nGi-0008Pg-0g for ged-emacs-devel@m.gmane.org; Sun, 24 Feb 2013 20:54:16 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:56623) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9nGe-0008O1-LG for emacs-devel@gnu.org; Sun, 24 Feb 2013 20:54:14 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U9nGd-0001KH-PB for emacs-devel@gnu.org; Sun, 24 Feb 2013 20:54:12 -0500 Original-Received: from mail-wg0-f43.google.com ([74.125.82.43]:36587) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9nGd-0001Jv-JB for emacs-devel@gnu.org; Sun, 24 Feb 2013 20:54:11 -0500 Original-Received: by mail-wg0-f43.google.com with SMTP id e12so2043422wge.22 for ; Sun, 24 Feb 2013 17:54:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=8kQI+HeQfcmMbjIJFfHGDTGMTa63Cv7jxKTUM7wfecw=; b=mTbLPfkM9793dq/suLoi2FXphU7UzIQNCP5gXLyS30CFcFZVbQ/px9afYORA+SHCbL R8J/NEz5lWJe7/a3PpeXH/clpiE59i0y8LFKSecVA4GBhRmC8cRBCvG2O2ZHZpxVUw0x v+oFm8wu5SAiCiGCOzhTGB/EVf+kixci2GLuNWi+Qsh8iJh1BrGmnI7/N75xjzAaOB/2 A8p45VpjMIwFe2+ay/vc+MgJ9TRR874YJvJ8Twn+xw/9fRvuB3gPlfb2FF5ZZ+yI64lG WN2CP4wFCm2Q1+SFQ7l6FX1QBg5kJYbrOnhjmJK2qzfaQalS+kL/N82J4Ka8A/SDpI0o MMhQ== X-Received: by 10.194.173.167 with SMTP id bl7mr4363393wjc.50.1361757250044; Sun, 24 Feb 2013 17:54:10 -0800 (PST) Original-Received: by 10.194.88.226 with HTTP; Sun, 24 Feb 2013 17:53:39 -0800 (PST) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 74.125.82.43 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:157300 Archived-At: On Mon, Feb 25, 2013 at 2:40 AM, Stefan Monnier wrote: > > So basically, all we need to do is to be able to easily recognize "Elisp > source in utf-8 encoding". One way to do that would be to use > a BOM-like marker, e.g. start utf-8 Elisp files with "\ufeff" either at > the very beginning of the file or right after a semi-colon (for better > backward compatibility). Why not the normal comment about utf-8?