From ba6055ab8ebbce6f1ec04d3d4a3b90f3f16b5cc3 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Fri, 17 Apr 1998 00:42:59 +0000 Subject: [PATCH] Flush the token length check in sharp-colon allowing #:|| to be read, however #: no long produces an error and now yields #:||. --- code/sharpm.lisp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/code/sharpm.lisp b/code/sharpm.lisp index ef4c8684d..adaa6d2e3 100644 --- a/code/sharpm.lisp +++ b/code/sharpm.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/sharpm.lisp,v 1.15 1998/02/11 10:03:08 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sharpm.lisp,v 1.16 1998/04/17 00:42:59 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -119,13 +119,6 @@ (colon (%reader-error stream "Symbol following #: contains a package marker: ~S" token)) - ((eql (length token) 0) - (let ((ch (read-char stream nil nil t))) - (when ch - (%reader-error stream - "Illegal terminating character after a colon: ~S." - ch)) - (reader-eof-error stream "after a colon"))) (t (make-symbol token))))) -- GitLab