Fix order of arguments to HASH-TABLE/MODIFY!.
authorTaylor R Campbell <campbell@mumble.net>
Wed, 8 Jun 2011 18:21:07 +0000 (18:21 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Wed, 8 Jun 2011 18:21:07 +0000 (18:21 +0000)
commit3153bf0b3e72eba7043a0e1f9d14a6bf78bf1d27
tree80967d06d7a88090a0f7cf8d415f78dd838d806e
parentfd45b3478e152b120202becd1aa70dc6ebf84b71
Fix order of arguments to HASH-TABLE/MODIFY!.

With any luck, nobody was using this except me outside the tree.
And it's not documented, so that nobody character will get what he
deserves.

Before:

   (hash-table/modify! hash-table key
     (lambda ()
       ...
         a gigantic
         heffable hoary herralump of
         an expression
       ...)
     tiny)

After:

   (hash-table/modify! hash-table key tiny
     (lambda ()
       ...
         a gigantic
         heffable hoary herralump of
         an expression
       ...))
src/imail/imail-imap.scm
src/runtime/hashtb.scm