* pccl-20.el: Do not require 'poem.
[elisp/apel.git] / poem-ltn1.el
index aa0d3b8..f7e23c4 100644 (file)
@@ -173,22 +173,21 @@ code conversion will not take place."
 ;;;
 
 (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
-be applied to `coding-system-for-read'."
+  (coding-system filename &optional visit beg end replace)
+  "Like `insert-file-contents', q.v., CODING-SYSTEM the first arg will be
+ignored."
   (insert-file-contents filename visit beg end replace))
 
-(defun write-region-as-coding-system (start end filename coding-system
-                                           &optional append visit lockname)
-  "Like `write-region', q.v., but CODING-SYSTEM the fourth arg will be
-applied to `coding-system-for-write'."
+(defun write-region-as-coding-system
+  (coding-system start end filename &optional append visit lockname)
+  "Like `write-region', q.v., CODING-SYSTEM the first arg will be ignored."
   (let (jka-compr-compression-info-list jam-zcat-filename-list)
     (write-region start end filename append visit lockname)))
 
-(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
-be applied to `coding-system-for-read'."
+(defun find-file-noselect-as-coding-system
+  (coding-system filename &optional nowarn rawfile)
+  "Like `find-file-noselect', q.v., CODING-SYSTEM the first arg will be
+ignored."
   (find-file-noselect filename nowarn rawfile))