mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-27 11:40:45 -07:00
Merge branch 'develop' of gitlab.com:embeddable-common-lisp/ecl into develop
This commit is contained in:
commit
9f940c125a
2 changed files with 6 additions and 2 deletions
|
|
@ -93,7 +93,11 @@
|
|||
|
||||
(defun emit-inlined-values (form forms)
|
||||
(let ((args (c1form-arg 0 form)))
|
||||
(prog1 (emit-inline-form (or (pop args) (c1nil)) forms)
|
||||
(prog1 (emit-inline-form (or (pop args) (c1nil))
|
||||
;; the rest of the form
|
||||
;; in a inlined values
|
||||
;; are the rest of the values args
|
||||
args )
|
||||
(loop with *destination* = 'TRASH
|
||||
for form in args
|
||||
do (c2expr* form)))))
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ is not given, ends the recording."
|
|||
*dribble-closure* nil))))
|
||||
(multiple-value-bind (sec min hour day month year)
|
||||
(get-decoded-time)
|
||||
(format dribble-stream "~&Starts dribbling to ~A (~d/~d/~d, ~d:~d:~d)."
|
||||
(format dribble-stream "~&Starts dribbling to ~A (~d/~d/~d, ~2,'0d:~2,'0d:~2,'0d)."
|
||||
namestring year month day hour min sec)
|
||||
(setq *standard-input* dribble-stream
|
||||
*standard-output* dribble-stream
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue