1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Handle more identifier characters

This commit is contained in:
Ian Price 2015-06-23 15:46:26 +01:00
parent a680a4cb9d
commit 88c052214f

View file

@ -74,8 +74,17 @@
((#\+) (display "_a" port))
((#\\) (display "_b" port))
((#\/) (display "_f" port))
((#\%) (display "_c" port))
((#\$) (display "_d" port))
((#\~) (display "_t" port))
((#\^) (display "_i" port))
((#\&) (display "_j" port))
((#\:) (display "_k" port))
((#\@) (display "_m" port))
;; unused: noqrvxy
(else
(throw 'bad-id-char c)))))
(display "_z" port)
(display (char->integer c) port)))))
name))))
(define (bind-rest-args rest num-drop)