From 2a58968efbb677bcc8a3031fc35b05f47ea6453d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 30 Nov 1991 22:55:08 +0000 Subject: [PATCH] Wrapped a defvar with an eval-when (compile load eval) because it's used at compile time also. --- code/format.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/format.lisp b/code/format.lisp index 9a391c8e1..e92da1c18 100644 --- a/code/format.lisp +++ b/code/format.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.12 1991/11/30 22:38:47 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.13 1991/11/30 22:55:08 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -270,7 +270,8 @@ ,(expand-control-string control-string) args))) -(defvar *current-directive-offset* nil) +(eval-when (compile load eval) + (defvar *current-directive-offset* nil)) (defun expand-control-string (string) (let* ((string (etypecase string -- GitLab