Raymond Toy pushed to branch issue-163-add-command-line-version at cmucl / cmucl
Commits:
-
1d9b25b2
by Raymond Toy at 2023-02-28T11:58:30-08:00
1 changed file:
Changes:
... | ... | @@ -403,7 +403,8 @@ |
403 | 403 | (defswitch "version" #'version-switch-demon
|
404 | 404 | "Prints the cmucl version and exits")
|
405 | 405 | |
406 | -;; Make --version work too since that's a common option.
|
|
406 | +;; Make --version work too since that's a common command line option
|
|
407 | +;; for GNU software.
|
|
407 | 408 | (defswitch "-version" #'version-switch-demon
|
408 | - "Prints the cmucl version and exits")
|
|
409 | + "Prints the cmucl version and exits; same as -version")
|
|
409 | 410 |