From: tomo Date: Tue, 19 Dec 2000 07:30:28 +0000 (+0000) Subject: (binary-start-process): Fix typo. X-Git-Tag: flim-1_14_0~27 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e2f83fd2a7421ddea2d3b5d2eb2320334034086c;p=elisp%2Fflim.git (binary-start-process): Fix typo. (binary-start-process-shell-command): Likewise. --- diff --git a/raw-io.el b/raw-io.el index 1ccabde..5652c94 100644 --- a/raw-io.el +++ b/raw-io.el @@ -78,13 +78,13 @@ This function ensures that none of these modifications will take place." "Like `start-process', q.v., but don't code conversion." (let ((coding-system-for-read 'binary) (coding-system-for-write 'binary)) - (apply '#start-process name buffer program program-args))) + (apply #'start-process name buffer program program-args))) (defun binary-start-process-shell-command (name buffer &rest args) "Like `start-process-shell-command', q.v., but don't code conversion." (let ((coding-system-for-read 'binary) (coding-system-for-write 'binary)) - (apply '#start-process-shell-command name buffer args))) + (apply #'start-process-shell-command name buffer args))) (defun raw-text-insert-file-contents (filename