X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-format.lisp;h=9cd700960fb390867e943b5ff9363cabe30d6d13;hb=a160917364f85b38dc0826a5e3dcef87e3c4c62c;hp=06baecd712435368cc4981062881083e3db94f44;hpb=148e3820ad314a9b59d0133c1d60eaac4af9118b;p=sbcl.git diff --git a/src/code/early-format.lisp b/src/code/early-format.lisp index 06baecd..9cd7009 100644 --- a/src/code/early-format.lisp +++ b/src/code/early-format.lisp @@ -11,16 +11,16 @@ (defparameter *format-whitespace-chars* (vector #\space - #\newline - ;; We leave out this non-STANDARD-CHARACTER entry from this table - ;; when we're running in the cross-compilation host, since ANSI - ;; doesn't require the cross-compilation host to know what a tab is. - #-sb-xc-host (code-char tab-char-code))) + #\newline + ;; We leave out this non-STANDARD-CHARACTER entry from this table + ;; when we're running in the cross-compilation host, since ANSI + ;; doesn't require the cross-compilation host to know what a tab is. + #-sb-xc-host (code-char tab-char-code))) (defvar *format-directive-expanders* - (make-array char-code-limit :initial-element nil)) + (make-array base-char-code-limit :initial-element nil)) (defvar *format-directive-interpreters* - (make-array char-code-limit :initial-element nil)) + (make-array base-char-code-limit :initial-element nil)) (defvar *default-format-error-control-string* nil) (defvar *default-format-error-offset* nil)