unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Loading souce Elisp faster
@ 2013-02-25  1:40 Stefan Monnier
  2013-02-25  1:53 ` Lennart Borgman
                   ` (7 more replies)
  0 siblings, 8 replies; 90+ messages in thread
From: Stefan Monnier @ 2013-02-25  1:40 UTC (permalink / raw)
  To: emacs-devel

It used to be the case that compiling one's .emacs was silly because it
provided no measurable speed difference.  But nowadays this is not true
any more: loading a source Elisp file is significantly slower because it
goes through load-with-code-conversion.

For source files in utf-8 encoding this does not need to be the case: we
could load them without going through load-with-code-conversion.
And given that utf-8 should be the standard encoding for Elisp files
(if not quite now, surely in some not too distant future), this is an
important case.

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).


        Stefan



^ permalink raw reply	[flat|nested] 90+ messages in thread

end of thread, other threads:[~2013-03-20  8:15 UTC | newest]

Thread overview: 90+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-25  1:40 Loading souce Elisp faster Stefan Monnier
2013-02-25  1:53 ` Lennart Borgman
2013-02-25  2:53   ` Stefan Monnier
2013-02-25  2:55     ` Lennart Borgman
2013-02-25  3:57       ` Stefan Monnier
2013-02-25  4:35         ` Stephen J. Turnbull
2013-02-25  4:51           ` Stefan Monnier
2013-02-25  5:24         ` Paul Eggert
2013-02-25  6:12           ` Xue Fuqiao
2013-02-25 15:39           ` Eli Zaretskii
2013-02-25 18:41             ` Paul Eggert
2013-02-26  7:23               ` Werner LEMBERG
2013-02-26  8:48                 ` Andreas Schwab
2013-02-25  5:47         ` Leo Liu
2013-02-25 16:28         ` Ted Zlatanov
2013-02-27  4:18         ` Kenichi Handa
2013-02-27 13:48           ` Stefan Monnier
2013-02-27 14:50             ` Drew Adams
2013-02-27 17:49             ` Werner LEMBERG
2013-02-27 14:28           ` Richard Stallman
2013-02-28 14:10             ` Kenichi Handa
2013-03-01  2:12               ` Richard Stallman
2013-03-02 12:52                 ` Kenichi Handa
2013-03-03  0:35                   ` Richard Stallman
2013-03-10 15:19                 ` handa
2013-03-11  1:19                   ` Richard Stallman
2013-03-15 16:20                   ` handa
2013-03-20  8:15                     ` Kenichi Handa
2013-02-25  7:24 ` Achim Gratz
2013-02-25 11:43 ` Richard Stallman
2013-02-25 15:19   ` Stefan Monnier
2013-02-25 15:36     ` Drew Adams
2013-02-25 16:09       ` Stefan Monnier
2013-02-25 16:31         ` Lennart Borgman
2013-02-25 18:31           ` Stefan Monnier
2013-02-25 19:20             ` Lennart Borgman
2013-02-25 20:53               ` Stefan Monnier
2013-02-25 20:57                 ` Lennart Borgman
2013-02-25 21:37                   ` Stefan Monnier
2013-02-25 21:57                     ` Lennart Borgman
2013-02-25 23:59                       ` Lennart Borgman
2013-02-26 17:27                         ` Achim Gratz
2013-02-26 21:38                           ` Lennart Borgman
2013-02-26 21:43                             ` Dmitry Gutov
2013-02-26 21:47                               ` Lennart Borgman
2013-02-26  4:54           ` Stephen J. Turnbull
2013-02-26  8:29             ` Ulrich Mueller
2013-02-25 21:51     ` Richard Stallman
2013-02-25 23:54       ` Stefan Monnier
2013-02-25 15:35   ` Drew Adams
2013-02-25 13:33 ` Kenichi Handa
2013-02-25 13:50   ` Xue Fuqiao
2013-02-25 15:35     ` Drew Adams
2013-02-25 15:52     ` Eli Zaretskii
2013-02-25 22:39       ` Xue Fuqiao
2013-02-26  3:48         ` Eli Zaretskii
2013-02-26 10:44           ` Xue Fuqiao
2013-02-26 17:02             ` Eli Zaretskii
2013-02-25 15:35   ` Drew Adams
2013-02-25 16:45 ` David Engster
2013-02-26 12:56   ` Richard Stallman
2013-02-26 16:26     ` David Engster
2013-02-26 20:19       ` Richard Stallman
2013-02-26 21:00         ` David Engster
2013-02-26 21:12           ` Eli Zaretskii
2013-02-26 21:18             ` David Engster
2013-02-26 22:40               ` Xue Fuqiao
2013-02-26 22:51               ` David Engster
2013-02-27  0:44                 ` Drew Adams
2013-02-27  1:22           ` Stefan Monnier
2013-02-27  1:56             ` Lennart Borgman
2013-02-27 14:28             ` Richard Stallman
2013-02-27 15:21               ` Stefan Monnier
2013-02-27 17:21                 ` Lennart Borgman
2013-02-27 18:31             ` Achim Gratz
2013-02-27 18:39               ` Drew Adams
2013-02-27 19:28                 ` Achim Gratz
2013-02-27 22:32                   ` Xue Fuqiao
2013-02-27 18:43               ` Lennart Borgman
2013-02-27  4:49           ` Kenichi Handa
2013-02-27 14:27           ` Richard Stallman
2013-02-26 16:57     ` Eli Zaretskii
2013-02-26 20:19       ` Richard Stallman
2013-02-26 20:45         ` Eli Zaretskii
2013-02-27  2:22     ` Stephen J. Turnbull
2013-02-25 21:12 ` Ivan Kanis
2013-02-25 22:47   ` Glenn Morris
2013-02-25 21:17 ` Barry Warsaw
2013-02-26  7:10   ` Thierry Volpiatto
2013-02-26  7:59 ` Andreas Röhler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).