]> git.eshelyaron.com Git - emacs.git/commitdiff
Justin Bogner <mail at justinbogner.com> (tiny change)
authorGlenn Morris <rgm@gnu.org>
Sat, 20 Sep 2008 20:57:47 +0000 (20:57 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 20 Sep 2008 20:57:47 +0000 (20:57 +0000)
(fortune-program-options): Change to a list.
(fortune-in-buffer): Use apply.

lisp/ChangeLog
lisp/play/fortune.el

index 40434d685207931513fe38a51b9275d1075735d6..f7ffeba650d0411c49d2dba15c4204bc677a1ca3 100644 (file)
@@ -1,3 +1,8 @@
+2008-09-20  Justin Bogner  <mail@justinbogner.com>  (tiny change)
+
+       * play/fortune.el (fortune-program-options): Change to a list.
+       (fortune-in-buffer): Use apply.
+
 2008-09-20  Ulrich Mueller  <ulm@kph.uni-mainz.de>
 
        * emacs-lisp/authors.el: Change encoding of file to utf-8.
index 5e25ebae1fe0863c7cd5fcf5bc4dc205f6b338ad..5c7d2d21b8ef895f177c4e4f07186454931620af 100644 (file)
@@ -87,9 +87,9 @@ Normally you won't have a reason to change it."
   "Program to select a fortune cookie."
   :type 'string
   :group 'fortune)
-(defcustom fortune-program-options ""
-  "Options to pass to the fortune program (a string)."
-  :type 'string
+(defcustom fortune-program-options ()
+  "Options to pass to the fortune program."
+  :type '(repeat string)
   :group 'fortune)
 (defcustom fortune-strfile "strfile"
   "Program to compute a new fortune database."
@@ -299,11 +299,10 @@ when supplied, specifies the file to choose the fortune from."
       (if fortune-always-compile
          (fortune-compile fort-file))
 
-      (call-process
-        fortune-program  ;; programm to call
-       nil fortune-buffer nil ;; INFILE BUFFER DISPLAYP
-       (concat fortune-program-options fort-file)))))
-
+      (apply 'call-process
+             fortune-program  ;; program to call
+             nil fortune-buffer nil ;; INFILE BUFFER DISPLAYP
+             fort-file fortune-program-options))))
 
 ;;;###autoload
 (defun fortune (&optional file)