mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-16 18:50:23 +02:00
Symbols longer than 128 chars can cause an exception. Also, the terminating colon of long postfix keywords are not handled correctly.
* test-suite/tests/reader.test ("read-options"): Add test for long postfix keywords. * libguile/read.c (scm_read_mixed_case_symbol): Fix exception on symbols are greater than 128 chars. Also, colons are not stripped from long postfix keywords.
This commit is contained in:
parent
1011599792
commit
93c0c75658
2 changed files with 17 additions and 3 deletions
|
@ -165,6 +165,11 @@
|
|||
(with-read-options '(keywords postfix)
|
||||
(lambda ()
|
||||
(read-string "keyword:")))))
|
||||
(pass-if "long postfix keywords"
|
||||
(eq? #:keyword0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
||||
(with-read-options '(keywords postfix)
|
||||
(lambda ()
|
||||
(read-string "keyword0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789:")))))
|
||||
(pass-if "`:' is not a postfix keyword (per SRFI-88)"
|
||||
(eq? ':
|
||||
(with-read-options '(keywords postfix)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue