update.
[elisp/apel.git] / poem-e20_2.el
index e4cf3b5..c7d9687 100644 (file)
@@ -146,8 +146,8 @@ except for line-break code."
 ;;;
 
 (defun insert-file-contents-as-coding-system
-  (filename coding-system &optional visit beg end replace)
-  "Like `insert-file-contents', q.v., but CODING-SYSTEM the second arg will
+  (coding-system filename &optional visit beg end replace)
+  "Like `insert-file-contents', q.v., but CODING-SYSTEM the first arg will
 be applied to `coding-system-for-read'."
   (let ((flag enable-multibyte-characters)
        (coding-system-for-read coding-system)
@@ -156,9 +156,9 @@ be applied to `coding-system-for-read'."
        (insert-file-contents filename visit beg end replace)
       (set-buffer-multibyte flag))))
 
-(defun find-file-noselect-as-coding-system (filename coding-system
-                                                    &optional nowarn rawfile)
-  "Like `find-file-noselect', q.v., but CODING-SYSTEM the second arg will
+(defun find-file-noselect-as-coding-system
+  (coding-system filename &optional nowarn rawfile)
+  "Like `find-file-noselect', q.v., but CODING-SYSTEM the first arg will
 be applied to `coding-system-for-read'."
   (let ((flag enable-multibyte-characters)
        (coding-system-for-read coding-system)