mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 06:12:25 -08:00
Newline in a warning for readability
This commit is contained in:
parent
b213762774
commit
010509f01a
1 changed files with 2 additions and 2 deletions
|
|
@ -87,12 +87,12 @@
|
|||
(multiple-value-bind (found c-name)
|
||||
(si::mangle-name x t)
|
||||
(if found
|
||||
(warn "The function ~s is already in the runtime. C-EXPORT-FNAME declaration ignored." x)
|
||||
(warn "The function ~s is already in the runtime.~%C-EXPORT-FNAME declaration ignored." x)
|
||||
(put-sysprop x 'Lfun c-name))))
|
||||
((consp x)
|
||||
(destructuring-bind (c-name lisp-name) x
|
||||
(if (si::mangle-name lisp-name)
|
||||
(warn "The funciton ~s is already in the runtime. C-EXPORT-FNAME declaration ignored." lisp-name)
|
||||
(warn "The funciton ~s is already in the runtime.~%C-EXPORT-FNAME declaration ignored." lisp-name)
|
||||
(put-sysprop lisp-name 'Lfun c-name))))
|
||||
(t
|
||||
(error "Syntax error in proclamation ~s" decl)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue