File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -432,8 +432,9 @@ Used by compiler to generate 'forbidden' identfiers.")
432
432
(intern str (load-time-value (find-package :clpython.user ))))))
433
433
434
434
(defmethod read-kind ((kind (eql :dot )) c1 &rest args)
435
- (declare (ignorable kind))
435
+ (declare (ignorable kind) ( dynamic-extent args) )
436
436
(assert (char= c1 #\. ))
437
+ (assert (null args))
437
438
' [.])
438
439
439
440
; ; String
Original file line number Diff line number Diff line change 14
14
filename)
15
15
&body body)
16
16
" Automatically recompile when FASL is apparently intended for another implementation"
17
- (declare (ignorable restart-name ))
18
- ` (flet ((.invoke-recompile-restart (&optional c)
17
+ (declare (ignorable restart-name filename))
18
+ ` (flet (#+ (or allegro ccl sbcl lispworks)
19
+ (.invoke-recompile-restart (&optional c)
19
20
(declare (ignore c))
20
21
, (when restart-name
21
22
` (progn
You can’t perform that action at this time.
0 commit comments