mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
New command line option --version to print version number.
This commit is contained in:
parent
6c380fba8e
commit
7b36d76089
2 changed files with 7 additions and 0 deletions
|
|
@ -9,6 +9,9 @@ ECL 9.11.1:
|
|||
|
||||
- LOAD works on special files (/dev/null and the like).
|
||||
|
||||
- New command line option --version outputs the version number preceded
|
||||
by the implementation name ("ECL 9.11.1" in this particular release).
|
||||
|
||||
* Bugs fixed:
|
||||
|
||||
- In single-threaded builds, ECL did not properly restore the signal mask
|
||||
|
|
|
|||
|
|
@ -53,6 +53,10 @@ Usage: ecl [-? | --help]
|
|||
("-h" 0 #0# :noloadrc)
|
||||
("-norc" 0 nil :noloadrc)
|
||||
("--" 0 nil :stop)
|
||||
("--version" 0
|
||||
(progn (setf quit 0)
|
||||
(format *standard-output* "ECL ~A" (lisp-implementation-version)))
|
||||
:noloadrc)
|
||||
("-debug" 0 (setf si::*break-enable* t))
|
||||
("-nodebug" 0 (setf si::*break-enable* nil))
|
||||
("-eval" 1 (eval (read-from-string 1)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue