Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
alexandria
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christophe Junke
alexandria
Commits
d3989d23
Commit
d3989d23
authored
18 years ago
by
Attila Lendvai
Browse files
Options
Downloads
Patches
Plain Diff
Extended parse-body with a :whole arg, report multiple docstring error.
parent
49ed1d08
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
macros.lisp
+9
-7
9 additions, 7 deletions
macros.lisp
with
9 additions
and
7 deletions
macros.lisp
+
9
−
7
View file @
d3989d23
...
...
@@ -24,19 +24,21 @@ Example:
,
(
let
,
(
mapcar
#'
list
names
gensyms
)
,@
forms
)))))
(
defun
parse-body
(
body
&key
documentation
)
"Parses BODY into
documentation string, declarations, and remaining forms
.
Documentation strings are recognized only if DOCUMENTATION is true.
Returns
three values: list of remaining forms, list of declarations, and documentation
string if any
."
(
defun
parse-body
(
body
&key
documentation
whole
)
"Parses BODY into
(values remaining-forms declarations doc-string)
.
Documentation strings are recognized only if DOCUMENTATION is true.
Syntax errors in body are signalled and WHOLE is used in the signal
arguments when given
."
(
let
((
doc
nil
)
(
decls
nil
)
(
current
nil
))
(
tagbody
:declarations
(
setf
current
(
car
body
))
(
when
(
and
documentation
(
stringp
current
)
(
not
doc
)
(
cdr
body
))
(
setf
doc
(
pop
body
))
(
when
(
and
documentation
(
stringp
current
)
(
cdr
body
))
(
if
doc
(
error
"Too many documentation strings in ~S."
(
or
whole
body
))
(
setf
doc
(
pop
body
)))
(
go
:declarations
))
(
when
(
starts-with
'declare
current
)
(
push
(
pop
body
)
decls
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment