From 0c4c84243e659981c7b187f44a353a199b7b3269 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Mon, 23 May 2005 18:42:22 +0000 Subject: [PATCH] Include the fasl-file-version in the lisp-implementation-version string. --- code/misc.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/misc.lisp b/code/misc.lisp index 425712d6b..9c27f7b16 100644 --- a/code/misc.lisp +++ b/code/misc.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.33 2003/09/25 14:08:33 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.34 2005/05/23 18:42:22 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -157,7 +157,7 @@ (defun lisp-implementation-version () "Returns a string describing the implementation version." - *lisp-implementation-version*) + (format nil "~A (~X)" *lisp-implementation-version* c:byte-fasl-file-version)) (defun machine-instance () "Returns a string giving the name of the local machine." -- GitLab