We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256156c commit fc79d7dCopy full SHA for fc79d7d
1 file changed
str.lisp
@@ -763,14 +763,15 @@ Returns the string written to file."
763
(cl-ppcre:scan-to-strings
764
,(apply #'str:concat (reverse regex))
765
,str)
766
- (declare (ignore ,whole-str))
+ (declare (ignore ,whole-str)
767
+ ((or null (simple-array string (*))) ,regs))
768
(when ,regs
769
(let ,(loop for (v ind) in vars
770
unless (string= (symbol-name v) "_")
771
collect v)
772
,@(loop for (v ind) in vars
773
- collect `(setf ,v (elt ,regs ,ind)))
774
+ collect `(setf ,v (aref ,regs ,ind)))
775
(return-from ,block
776
(progn ,@forms)))))))))))
777
0 commit comments