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 Add comment about adding --version
It's added because it's a common command line option for GNU.
- - - - -
1 changed file:
- src/code/commandline.lisp
Changes:
===================================== src/code/commandline.lisp ===================================== @@ -403,7 +403,8 @@ (defswitch "version" #'version-switch-demon "Prints the cmucl version and exits")
-;; Make --version work too since that's a common option. +;; Make --version work too since that's a common command line option +;; for GNU software. (defswitch "-version" #'version-switch-demon - "Prints the cmucl version and exits") + "Prints the cmucl version and exits; same as -version")
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1d9b25b290a9955742ec7ca4...