diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-02-10 22:20:47 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-02-10 22:20:47 +0000 |
commit | 4c86cca05a3fe3321f168ffde71871eb3102d464 (patch) | |
tree | 92b88b70f211ed4792f44e4d4ac48744c7ccb16f | |
parent | bb125ff0bf3a9e695d0d686aa81ec57779329374 (diff) | |
download | emacs-4c86cca05a3fe3321f168ffde71871eb3102d464.tar.gz |
(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." (message "Loading %s (source)..." file) (message "Loading %s..." file))) (when purify-flag - (setq preloaded-file-list (cons file preloaded-file-list))) + (push file preloaded-file-list)) (unwind-protect (let ((load-file-name fullname) (set-auto-coding-for-load t) |