Marc:
I've been hacking on _num.scm a bit and came across the following
naming situation:
heine:~/programs/gambit/lib> grep 'fixnum.*bitwise'
*gambit*.scm
_gambit#.scm:;;; ##fixnum.bitwise-ior ##fixnum.bitwise-xor
_gambit#.scm:;;; ##fixnum.bitwise-and ##fixnum.bitwise-not
<more stuff omitted>
heine:~/programs/gambit/lib> grep 'fxbitwise' *gambit*.scm
heine:~/programs/gambit/lib>
In making mass changes of ##fixnum.* names to ##fx* names in my
codeI found out that ##fxbitwise-ior, etc., are not internal names
for procedures.
Should these be changed?
Brad