* poem-20.el, poem-e20_2.el, poem-ltn1.el, poem-nemacs.el, poem-om.el
[elisp/apel.git] / poem-nemacs.el
index 66b1cc5..9c4c825 100644 (file)
@@ -241,33 +241,29 @@ except for line-break code."
 ;;; @ with code-conversion
 ;;;
 
-(defun insert-file-contents-as-specified-coding-system (filename &rest args)
-  "Like `insert-file-contents', q.v., but code convert by the specified
-coding-system. ARGS the optional arguments are passed to
-`insert-file-contents' except for the last element. The last element of
-ARGS must be a coding-system."
-  (let ((kanji-fileio-code (car (reverse args)))
+(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'."
+  (let ((kanji-fileio-code coding-system)
        kanji-expected-code)
-    (insert-file-contents filename (car (nreverse (cdr (nreverse args)))))))
-
-(defun write-region-as-specified-coding-system (start end filename
-                                                     &rest args)
-  "Like `write-region', q.v., but code convert by the specified coding-system.
-ARGS the optional arguments are passed to `write-region' except for the last
-element. The last element of ARGS must be a coding-system."
-  (let ((kanji-fileio-code (car (reverse args)))
+    (insert-file-contents filename visit)))
+
+(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'."
+  (let ((kanji-fileio-code coding-system)
        jka-compr-compression-info-list jam-zcat-filename-list)
-    (apply 'write-region start end filename
-          (nreverse (cdr (nreverse args))))))
-
-(defun find-file-noselect-as-specified-coding-system (filename &optional args)
-  "Like `find-file-noselect', q.v., but code convert by the specified
-coding-system. ARGS the optional arguments are passed to `find-file-noselect'
-except for the last element. The last element of ARGS must be a
-coding-system."
-  (let ((kanji-fileio-code (car (reverse args)))
+    (write-region start end filename append visit)))
+
+(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'."
+  (let ((kanji-fileio-code coding-system)
        kanji-expected-code)
-    (apply' find-file-noselect filename (nreverse (cdr (nreverse args))))))
+    (find-file-noselect filename nowarn)))
 
 
 ;;; @ buffer representation