diff options
| author | Dan Nicolaescu | 2009-11-11 06:30:38 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 06:30:38 +0000 |
| commit | a042de45b167334d8725debf27e6ece1be0a1f57 (patch) | |
| tree | bc8f6015d7dc90991826ba24e5cfc141d3094f7a | |
| parent | 3b6acc72ca05cc1c0fef190f3954ff82a485e62d (diff) | |
| download | emacs-a042de45b167334d8725debf27e6ece1be0a1f57.tar.gz emacs-a042de45b167334d8725debf27e6ece1be0a1f57.zip | |
* Makefile.in (ELCFILES): Add international/mule-conf.elc.
* loadup.el ("international/mule-conf"): Load the byte compiled version.
* international/mule-conf.el: Allow to be byte compiled.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/Makefile.in | 1 | ||||
| -rw-r--r-- | lisp/international/mule-conf.el | 4 | ||||
| -rw-r--r-- | lisp/loadup.el | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8cb2f2121cb..5b9b8880db6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * Makefile.in (ELCFILES): Add international/mule-conf.elc. | ||
| 4 | * loadup.el ("international/mule-conf"): Load the byte compiled version. | ||
| 5 | * international/mule-conf.el: Allow to be byte compiled. | ||
| 6 | |||
| 3 | * international/mule.el (define-charset): Purecopy props. | 7 | * international/mule.el (define-charset): Purecopy props. |
| 4 | (load-with-code-conversion): Purecopy doc string and file name. | 8 | (load-with-code-conversion): Purecopy doc string and file name. |
| 5 | (put-charset-property): Purecopy strings. | 9 | (put-charset-property): Purecopy strings. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index ae162d6d3a8..2a9f648ae81 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -861,6 +861,7 @@ ELCFILES = \ | |||
| 861 | $(lisp)/international/latexenc.elc \ | 861 | $(lisp)/international/latexenc.elc \ |
| 862 | $(lisp)/international/latin1-disp.elc \ | 862 | $(lisp)/international/latin1-disp.elc \ |
| 863 | $(lisp)/international/mule-cmds.elc \ | 863 | $(lisp)/international/mule-cmds.elc \ |
| 864 | $(lisp)/international/mule-conf.elc \ | ||
| 864 | $(lisp)/international/mule-diag.elc \ | 865 | $(lisp)/international/mule-diag.elc \ |
| 865 | $(lisp)/international/mule-util.elc \ | 866 | $(lisp)/international/mule-util.elc \ |
| 866 | $(lisp)/international/mule.elc \ | 867 | $(lisp)/international/mule.elc \ |
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 8805d5c17aa..b32f8a93f7a 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -1552,9 +1552,5 @@ for decoding and encoding files, process I/O, etc." | |||
| 1552 | ;; code. | 1552 | ;; code. |
| 1553 | (provide 'code-pages) | 1553 | (provide 'code-pages) |
| 1554 | 1554 | ||
| 1555 | ;; Local variables: | ||
| 1556 | ;; no-byte-compile: t | ||
| 1557 | ;; End: | ||
| 1558 | |||
| 1559 | ;; arch-tag: 7d5fed55-b6df-42f6-8d3d-0011190551f5 | 1555 | ;; arch-tag: 7d5fed55-b6df-42f6-8d3d-0011190551f5 |
| 1560 | ;;; mule-conf.el ends here | 1556 | ;;; mule-conf.el ends here |
diff --git a/lisp/loadup.el b/lisp/loadup.el index b531fd02b43..e12d88447ca 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -92,7 +92,7 @@ | |||
| 92 | (load "emacs-lisp/map-ynp") | 92 | (load "emacs-lisp/map-ynp") |
| 93 | (load "cus-start") | 93 | (load "cus-start") |
| 94 | (load "international/mule") | 94 | (load "international/mule") |
| 95 | (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake. | 95 | (load "international/mule-conf") |
| 96 | (load "env") | 96 | (load "env") |
| 97 | (load "format") | 97 | (load "format") |
| 98 | (load "bindings") | 98 | (load "bindings") |