From: Karl Heuer Date: Thu, 4 Dec 1997 04:47:41 +0000 (+0000) Subject: (load-with-code-conversion): Doc fix. X-Git-Tag: emacs-20.3~2668 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f69cb38947f85a6c8f894c789226dfa6e3092b2;p=emacs.git (load-with-code-conversion): Doc fix. --- diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 15cfe9f58c9..f26d0105788 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -31,8 +31,8 @@ Version number and name of this version of MULE (multilingual environment).") 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 @@ Return t if file exists." (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)))