Looks like this commit (r1607) https://github.com/hemmecke/fricas-svn/commit/eaeba1ae7c1fbd5ea5f54e1584082d63edec33f6#diff-9fc1ff02c3bf1ac5845aed974f5ac1b8L135
broke the )version command. Top commit at https://github.com/hemmecke/fricas/commits/fix-version-command fixes this. Patch is attached. May I commit to the official repo? Ralf On 11/23/2013 11:42 PM, Ralf Hemmecke wrote: > Just as a reminder... > > )version > > is currently giving > > >> System error: > The variable *BUILD-VERSION* is unbound. -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/fricas-devel. For more options, visit https://groups.google.com/groups/opt_out.
>From 7ee56a0ff416d375125f1fba505f2eaa8e5be4b9 Mon Sep 17 00:00:00 2001 From: Ralf Hemmecke <[email protected]> Date: Sun, 24 Nov 2013 00:18:19 +0100 Subject: fix ")version" command --- ChangeLog | 4 ++++ src/interp/setq.lisp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b03710c..be88fad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-11-24 Ralf Hemmecke <[email protected]> + + * src/interp/setq.lisp: fix ")version" command + 2013-11-23 Waldek Hebisch <[email protected]> * src/interp/compat.boot, src/interp/nlib.lisp, diff --git a/src/interp/setq.lisp b/src/interp/setq.lisp index 80cd071..2e262b8 100644 --- a/src/interp/setq.lisp +++ b/src/interp/setq.lisp @@ -260,7 +260,7 @@ (|time| . "set message time") (|type| . "set message type") (|unexpose| . "set expose drop constructor") - (|version| . "lisp (concat *build-version* \" compiled at \" *build-date*)") + (|version| . "lisp (concat |$build_version| \" compiled at \" |$build_date|)") (|wc| . "what categories") (|wd| . "what domains") (|wp| . "what packages") -- 1.8.1.2
