# HG changeset patch # User Karl Heuer # Date 881210861 0 # Node ID faf18d58a01b00408ea569d1ec0671e88f2c754b # Parent 7cce7f974c780233147ab1f220ca24a8c13e1db0 (load-with-code-conversion): Doc fix. diff -r 7cce7f974c78 -r faf18d58a01b lisp/international/mule.el --- a/lisp/international/mule.el Thu Dec 04 04:46:09 1997 +0000 +++ b/lisp/international/mule.el Thu Dec 04 04:47:41 1997 +0000 @@ -31,8 +31,8 @@ Distribution date of this version of MULE (multilingual environment).") (defun load-with-code-conversion (fullname file &optional noerror nomessage) - "Execute a file of Lisp code named FILE whose absolute path is FULLNAME. -The FILE is decoded before evaluation if necessary. + "Execute a file of Lisp code named FILE whose absolute name is FULLNAME. +The file contents are decoded before evaluation if necessary. If optional second arg NOERROR is non-nil, report no error if FILE doesn't exist. Print messages at start and end of loading unless @@ -67,7 +67,7 @@ (insert-file-contents fullname) ;; Make `kill-buffer' quiet. (set-buffer-modified-p nil)) - ;; Eval in the original buffer. + ;; Have the original buffer current while we eval. (eval-buffer buffer nil file)) (let (kill-buffer-hook kill-buffer-query-functions) (kill-buffer buffer)))