projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af0e510
)
Clean unused variable warning
author
David Vázquez
<davazp@gmail.com>
Wed, 24 Apr 2013 15:27:36 +0000
(16:27 +0100)
committer
David Vázquez
<davazp@gmail.com>
Wed, 24 Apr 2013 15:27:36 +0000
(16:27 +0100)
ecmalisp.lisp
patch
|
blob
|
history
diff --git
a/ecmalisp.lisp
b/ecmalisp.lisp
index
8775cc6
..
1f960b6
100644
(file)
--- a/
ecmalisp.lisp
+++ b/
ecmalisp.lisp
@@
-2763,10
+2763,9
@@
(defvar *compile-print-toplevels* nil)
(defun truncate-string (string &optional (width 60))
- (let ((size (length string))
- (n (or (position #\newline string)
- (min width (length string)))))
- (subseq string 0 n)))
+ (let ((n (or (position #\newline string)
+ (min width (length string)))))
+ (subseq string 0 n)))
(defun ls-compile-toplevel (sexp &optional multiple-value-p)
(let ((*toplevel-compilations* nil))