From 98c2c171f690c0ba40eea85254f40b3d1b5918d5 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 22 Dec 2000 08:56:15 +0000 Subject: [PATCH] * raw-io.el (binary-start-process-shell-command): Replace #' with `function'. --- ChangeLog | 5 +++++ raw-io.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e7d5460..cf868d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2000-12-22 Katsumi Yamaoka + * raw-io.el (binary-start-process-shell-command): Replace #' with + `function'. + +2000-12-22 Katsumi Yamaoka + * raw-io.el: Require `pces' (binary-insert-file-contents): Alias to `insert-file-contents-as-binary'. diff --git a/raw-io.el b/raw-io.el index 19de7be..ebbea17 100644 --- a/raw-io.el +++ b/raw-io.el @@ -48,7 +48,7 @@ (apply (function start-process-shell-command) name buffer args)) (as-binary-process (start-process name buffer shell-file-name shell-command-switch - (mapconcat #'identity args " "))))) + (mapconcat (function identity) args " "))))) (defalias 'raw-text-insert-file-contents 'insert-file-contents-as-raw-text) -- 1.7.10.4