Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gendl
gendl
Commits
98e0f8dc
Commit
98e0f8dc
authored
Apr 08, 2013
by
Dave Cooper
Browse files
fixed package on read-from-string of base-html-graphics-sheet in answer.lisp
parent
b7bb9a94
Changes
2
Hide whitespace changes
Inline
Side-by-side
glisp/source/genworks.lisp
View file @
98e0f8dc
...
...
@@ -577,7 +577,12 @@ please find implementation for the currently running lisp.~%")
(
defmacro
without-redefinition-warnings
(
&rest
body
)
#+
allegro
`
(
excl:without-redefinition-warnings
,@
body
)
#-
allegro
#+
sbcl
`
(
locally
(
declare
(
sb-ext:muffle-conditions
sb-kernel:redefinition-warning
))
(
handler-bind
((
sb-kernel:redefinition-warning
#'
muffle-warning
))
,@
body
))
#-
(
or
allegro
sbcl
)
(
progn
(
warn
"Need an implementation for without-redefinition-warnings for ~a~%."
(
lisp-implementation-type
))
`
(
progn
,@
body
)))
gwl/source/answer.lisp
View file @
98e0f8dc
...
...
@@ -201,7 +201,7 @@ instance at what time should the recovery instance expire?"
(
when
(
and
(
fboundp
'process-graphics-fields
)
(
typep
(
the-object
requestor
)
(
read-from-string
"base-html-graphics-sheet"
))
(
typep
(
the-object
requestor
)
(
read-from-string
"
gwl:
base-html-graphics-sheet"
))
(
the-object
requestor
(
evaluate
:view-object
)))
(
setq
query-plist
(
funcall
(
read-from-string
"gwl::process-graphics-fields"
)
query
query-plist
root-object
requestor
)))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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