Skip to content

Commit

Permalink
Avoid style-warnings on platforms without md5sum-string support.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmai committed May 20, 2015
1 parent 4af543b commit e0c3bee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Release 2.0.2
use of the sys:simple-int32-vector type. Patch supplied by
Martin Simmons from LispWorks.

* Minor fix to prevent style-warnings for implementations with no
support for md5sum-string.


Release 2.0.1
=============
Expand Down
3 changes: 2 additions & 1 deletion md5.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,8 @@ positions in the string, not to octets in the resulting binary
representation. The permissible external format specifiers are
determined by the underlying implementation."
(declare (optimize (speed 3) (safety 3) (space 0) (debug 1))
(type string string) (type fixnum start))
(type string string) (type fixnum start)
(ignorable external-format))
(locally
(declare (optimize (safety 1) (debug 0)))
#+cmu
Expand Down

0 comments on commit e0c3bee

Please sign in to comment.