chiark / gitweb /
src/utilities.lisp (compose): Handle the case of zero arguments.
[sod] / src / optparse.lisp
index 367fc5092eba9e94e6e5315135e7266d0fbb273e..5268cda728f33c69f7c8c7e65c7acbdeaaa059b0 100644 (file)
@@ -207,7 +207,7 @@ (defstruct (option
                wrapped.  If nil, the option is omitted from the help
                text.
 
-   Usually, one won't use make-option, but use the option macro instead."
+   Usually, one won't use `make-option', but use the `option' macro instead."
   (long-name nil :type (or null string))
   (tag nil :type t)
   (negated-tag nil :type t)
@@ -896,11 +896,8 @@ (defmacro options (&rest optlist)
 ;;; Support stuff for help and usage messages.
 
 (defun print-text (string
-                  &optional
-                  (stream *standard-output*)
-                  &key
-                  (start 0)
-                  (end nil))
+                  &optional (stream *standard-output*)
+                  &key (start 0) (end nil))
   "Prints STRING to a pretty-printed STREAM, breaking it at whitespace and
    newlines in the obvious way.  Stuff between square brackets is not broken:
    this makes usage messages work better."