From e318afea97ec0557e54cc9c9c4cbb1c9f672ddb1 Mon Sep 17 00:00:00 2001 From: teranisi Date: Tue, 28 Aug 2001 11:46:50 +0000 Subject: [PATCH] * slp.el (slp-exec-wait): Use `slp-program-arguments'. --- elmo/ChangeLog | 2 ++ elmo/slp.el | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 80b804d..e04ef1f 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,5 +1,7 @@ 2001-08-28 Yuuichi Teranishi + * slp.el (slp-exec-wait): Use `slp-program-arguments'. + * acap.el (acap-parse-return-metadata-or-return-metalist): Fix for parsing NIL. (acap-parse-return-metadata): Ditto. diff --git a/elmo/slp.el b/elmo/slp.el index 5ca27c3..88ed9d4 100644 --- a/elmo/slp.el +++ b/elmo/slp.el @@ -51,7 +51,8 @@ "Synchronous execution of slp-program. TYPE is a symbol (one of `srvs', `attrs', `srvtypes', `as-is', `ignore')." (with-temp-buffer - (let ((result (apply 'call-process slp-program nil t nil (delq nil args)))) + (let ((result (apply 'call-process slp-program nil t nil + (append slp-program-arguments (delq nil args))))) (unless (zerop result) (error "SLP error: " (buffer-string))) (goto-char (point-min)) -- 1.7.10.4