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:
parent
a680a4cb9d
commit
88c052214f
1 changed files with 10 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue