X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=emu-20.el;fp=emu-20.el;h=329c4f98704242e59b33ff40c47b8417a988ae07;hb=1b448c1d18bcaf8b8b23dbf6374ad02043ba1f74;hp=50d55d062a9b6f3ed926bc73769fc3b2e93ddb44;hpb=ec3aad07b61897fd293c8f7b3b59e765f7ccdd6a;p=elisp%2Fapel.git diff --git a/emu-20.el b/emu-20.el index 50d55d0..329c4f9 100644 --- a/emu-20.el +++ b/emu-20.el @@ -33,7 +33,7 @@ (eval-when-compile (require 'wid-edit)) -;;; @ binary access +;;; @ without code-conversion ;;; (defmacro as-binary-process (&rest body) @@ -57,6 +57,31 @@ (write-region start end filename append visit lockname) )) +(defun insert-file-contents-as-binary (filename + &optional visit beg end replace) + "Like `insert-file-contents', q.v., but don't code and format conversion. +Like `insert-file-contents-literary', but it allows find-file-hooks, +automatic uncompression, etc. + +Namely this function ensures that only format decoding and character +code conversion will not take place." + (let ((coding-system-for-read 'binary) + format-alist) + (insert-file-contents filename visit beg end replace) + )) + +(defun insert-file-contents-as-raw-text (filename + &optional visit beg end replace) + "Like `insert-file-contents', q.v., but don't code and format conversion. +Like `insert-file-contents-literary', but it allows find-file-hooks, +automatic uncompression, etc. +Like `insert-file-contents-as-binary', but it converts line-break +code." + (let ((coding-system-for-read 'raw-text) + format-alist) + (insert-file-contents filename visit beg end replace) + )) + ;;; @@ Mule emulating aliases ;;;