Raymond Toy pushed to branch master at cmucl / cmucl
Commits: dc743457 by Raymond Toy at 2016-12-07T21:30:55-08:00 Fix typo
"Cound" -> "Could"
- - - - -
1 changed file:
- src/code/run-program.lisp
Changes:
===================================== src/code/run-program.lisp ===================================== --- a/src/code/run-program.lisp +++ b/src/code/run-program.lisp @@ -767,7 +767,7 @@ (multiple-value-bind (read-fd write-fd) (unix:unix-pipe) (unless read-fd - (error (intl:gettext "Cound not create pipe: ~A") + (error (intl:gettext "Could not create pipe: ~A") (unix:get-unix-error-msg write-fd))) (copy-descriptor-to-stream read-fd object cookie) (push read-fd *close-on-error*)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/dc74345792038ce473026fcd5b...