Sun Aug 31 21:44:29 CDT 2008  Stephen Compall <scompall@nocandysw.com>
  * Add new INPUT parameter to MCL, Clozure, ECL, Lispworks, SCL backends

New patches:

[Add new INPUT parameter to MCL, Clozure, ECL, Lispworks, SCL backends
Stephen Compall <scompall@nocandysw.com>**20080901024429] {
hunk ./dev/clisp.lisp 4
+  (when input
+    (error "This version of trivial-shell does not support the input parameter."))
hunk ./dev/digitool.lisp 3
-(defun shell-command (command) 
+(defun shell-command (command input)
+  (when input
+    (error "This version of trivial-shell does not support the input parameter."))
hunk ./dev/ecl.lisp 3
-(defun shell-command (command)
+(defun shell-command (command input)
hunk ./dev/lispworks.lisp 3
-(defun %shell-command (command)
+(defun %shell-command (command input)
+  (when input
+    (error "This version of trivial-shell does not support the input parameter."))
hunk ./dev/openmcl.lisp 3
-(defun %shell-command (command)
+(defun %shell-command (command input)
+  (when input
+    (error "This version of trivial-shell does not support the input parameter."))
hunk ./dev/scl.lisp 3
-(defun %shell-command (command)
+(defun %shell-command (command input)
}

Context:

[TAG version-0.1.9
Gary King <gwking@metabang.com>**20080714002253] 
[bumped version to 0.1.9
Gary King <gwking@metabang.com>**20080714002240] 
[Removed cruft from sbcl.lisp -- whoopts
Gary King <gwking@metabang.com>**20080714002202] 
[website corrections, grrr
Gary King <gwking@metabang.com>**20080709222221] 
[Added textmate project for website
Gary King <gwking@metabang.com>**20080708124600] 
[Added website files
Gary King <gwking@metabang.com>**20080708124526] 
[package nickname mucking
Gary King <gwking@metabang.com>**20080708124404] 
[Added ecl.lisp and scl.lisp
Gary King <gwking@metabang.com>**20080708124319] 
[Cleanup
Gary King <gwking@metabang.com>**20080708124235] 
[Improve shell-command for SBCL on Windows with WIP -shell-command-using-temporary-file
Gary King <gwking@metabang.com>**20080708124147] 
[fix bug in openmcl and lispworks: s/shell-command/-shell-command/
Gary King <gwking@metabang.com>**20080708124048] 
[Started to add os-process-id and get-env-var
Gary King <gwking@metabang.com>**20080708123852] 
[TAG version-0.1.8
Gary King <gwking@metabang.com>**20080626023319] 
[bump version
Gary King <gwking@metabang.com>**20080626023259] 
[Also shadowing-import timeout-error
Gary King <gwking@metabang.com>**20080626023220] 
[Introduce :com.metabang.trivial-timeout feature to prevent multiple loading.
Gary King <gwking@metabang.com>**20080626023202] 
[correct error in threaded SBCL
Gary King <gwking@metabang.com>**20080626023127] 
[tweak system def and package def and backwards test
Gary King <gwking@metabang.com>**20080623030927] 
[some system file rearranging
Gary King <gwking@metabang.com>**20080622130909] 
[updating copyright year
Gary King <gwking@metabang.com>**20080622130830] 
[Rework sbcl run-program to deal with windows file stream issues
Gary King <gwking@metabang.com>**20080622034355] 
[Moved with-timeout into its own new package (trivial-timeout)
Gary King <gwking@metabang.com>**20080622034140] 
[Added some tests for with-timeout
Gary King <gwking@metabang.com>**20080622034018] 
[Remove _local_ test configuration from darcs
Gary King <gwking@metabang.com>**20080610132455] 
[Fix test configuration
Gary King <gwking@metabang.com>**20080610132431] 
[TAG version-0.1.7
Gary King <gwking@metabang.com>**20080610131547] 
[bump version
Gary King <gwking@metabang.com>**20080610131535] 
[open feature checks away from #+mcl and towards #+ccl
Gary King <gwking@metabang.com>**20080610131457] 
[TAG version-0.1.6
Gary King <gwking@metabang.com>**20080211134023] 
[bump version
Gary King <gwking@metabang.com>**20080211134011] 
[Update package def in tests to account for changes in LIFT
Gary King <gwking@metabang.com>**20080211134004] 
[Removed index.lml from website, switched name is system file to index.md
Gary King <gwking@metabang.com>**20080211133708] 
[Used keywords to designate systems
Gary King <gwking@metabang.com>**20080211133638] 
[TAG version-0.1.5
Gary King <gwking@metabang.com>**20071108202053] 
[bumped version
Gary King <gwking@metabang.com>**20071108202041] 
[Switched website to Markdown; running tests with configuration
Gary King <gwking@metabang.com>**20071108201953] 
[Read from stdin and stdout in separate threads
Ole Arndt <ole@sugarshark.com>**20071106205112
 
 The shell command used to block when it produced large amounts
 of output on process-error. The parent read process-output and
 process-error sequentially. When the output on process-error
 excedeed the pipe buffer, the shell command would hang, waiting 
 for the pipe to drain.
 NB: This patch will only work with a threads enabled sbcl.
 
] 
[TAG version-0.1.3
Gary King <gwking@metabang.com>**20070502210802] 
Patch bundle hash:
0945839c98e0fe45438221969dac073f332b05f2
