* slp.el (slp-exec-wait): Use `slp-program-arguments'.
authorteranisi <teranisi>
Tue, 28 Aug 2001 11:46:50 +0000 (11:46 +0000)
committerteranisi <teranisi>
Tue, 28 Aug 2001 11:46:50 +0000 (11:46 +0000)
elmo/ChangeLog
elmo/slp.el

index 80b804d..e04ef1f 100644 (file)
@@ -1,5 +1,7 @@
 2001-08-28  Yuuichi Teranishi  <teranisi@gohome.org>
 
+       * 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.
index 5ca27c3..88ed9d4 100644 (file)
@@ -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))