diff options
| author | Stefan Monnier | 2003-02-10 22:20:47 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-02-10 22:20:47 +0000 |
| commit | 4c86cca05a3fe3321f168ffde71871eb3102d464 (patch) | |
| tree | 92b88b70f211ed4792f44e4d4ac48744c7ccb16f | |
| parent | bb125ff0bf3a9e695d0d686aa81ec57779329374 (diff) | |
| download | emacs-4c86cca05a3fe3321f168ffde71871eb3102d464.tar.gz emacs-4c86cca05a3fe3321f168ffde71871eb3102d464.zip | |
(load-with-code-conversion): Use push.
| -rw-r--r-- | lisp/international/mule.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 0573b0046a6..8e81dfb0679 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -64,7 +64,7 @@ Return t if file exists." | |||
| 64 | (message "Loading %s (source)..." file) | 64 | (message "Loading %s (source)..." file) |
| 65 | (message "Loading %s..." file))) | 65 | (message "Loading %s..." file))) |
| 66 | (when purify-flag | 66 | (when purify-flag |
| 67 | (setq preloaded-file-list (cons file preloaded-file-list))) | 67 | (push file preloaded-file-list)) |
| 68 | (unwind-protect | 68 | (unwind-protect |
| 69 | (let ((load-file-name fullname) | 69 | (let ((load-file-name fullname) |
| 70 | (set-auto-coding-for-load t) | 70 | (set-auto-coding-for-load t) |