Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antoine Martin
quickref
Commits
4e71db2a
Commit
4e71db2a
authored
Oct 24, 2017
by
Antoine Martin
Browse files
Move log-texi-error to file.lisp
parent
3f7556c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
file.lisp
View file @
4e71db2a
...
...
@@ -32,3 +32,13 @@
(
if
(
probe-file
directory
)
(
clean-directory
directory
)
(
ensure-directories-exist
directory
)))
(
defun
log-texi-error
(
err
texi
)
(
let
((
filepathname
(
from-homedir
(
format
nil
"texi-logfiles/~A.log"
(
pathname-name
texi
)))))
(
with-open-file
(
file
filepathname
:direction
:output
:if-exists
:supersede
:if-does-not-exist
:create
)
(
format
file
err
))))
website.lisp
View file @
4e71db2a
...
...
@@ -116,16 +116,6 @@
(
print-columns
dir-list
length
file
))
(
format
file
"</body>~%"
))))
(
defun
log-texi-error
(
err
texi
)
(
let
((
filepathname
(
from-homedir
(
format
nil
"texi-logfiles/~A.log"
(
pathname-name
texi
)))))
(
with-open-file
(
file
filepathname
:direction
:output
:if-exists
:supersede
:if-does-not-exist
:create
)
(
format
file
err
))))
(
defun
build-texi
(
texi
makeinfo-path
&key
(
log-errors
t
))
(
let
((
out
(
with-output-to-string
(
out
)
(
sb-ext:run-program
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment