Skip to content

Commit

Permalink
Differentiate between fixed-length argument lists and variable-length
Browse files Browse the repository at this point in the history
argument lists in the help display
  • Loading branch information
mwitmer committed Feb 4, 2014
1 parent 6f1ee2e commit adc3331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/guile-wm/module/help.scm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(define (format-args args)
(if (list? args)
(apply string-append (map format-arg args))
(format-arg args)))
(format #f "~a ..." (format-arg args))))

(define (command-description c)
(define summary (command-summary c))
Expand Down

0 comments on commit adc3331

Please sign in to comment.