[Git][cmucl/cmucl][master] 2 commits: Fix #303: Remove unused var *assert-not-standard-readtable*
Raymond Toy pushed to branch master at cmucl / cmucl Commits: b040810c by Raymond Toy at 2024-04-22T13:57:52+00:00 Fix #303: Remove unused var *assert-not-standard-readtable* - - - - - 8de3c927 by Raymond Toy at 2024-04-22T13:57:57+00:00 Merge branch 'issue-303-remove-unused-assert-not-standard-readtable' into 'master' Fix #303: Remove unused var *assert-not-standard-readtable* Closes #303 See merge request cmucl/cmucl!209 - - - - - 1 changed file: - src/code/reader.lisp Changes: ===================================== src/code/reader.lisp ===================================== @@ -620,8 +620,7 @@ ;; Of course, we want to be able to modify the standard ;; readtable here! (invoke-restart 'kernel::continue)))) - (let ((*readtable* std-lisp-readtable) - (*assert-not-standard-readtable* nil)) + (let ((*readtable* std-lisp-readtable)) (set-cat-entry #\tab #.whitespace) (set-cat-entry #\linefeed #.whitespace) (set-cat-entry #\space #.whitespace) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/1abdcb329d945247acc210d... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/1abdcb329d945247acc210d... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)