Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fare-matcher
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Francois-Rene Rideau
fare-matcher
Commits
d0288343
Commit
d0288343
authored
Apr 04, 2011
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure to return only one value in macro-character reader function.
Makes clisp happy.
parent
68ad3a25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
quasiquote.lisp
quasiquote.lisp
+1
-2
No files found.
quasiquote.lisp
View file @
d0288343
...
...
@@ -5,7 +5,6 @@
#+
xcvb
(
module
(
:depends-on
(
"packages"
"matcher"
)))
(
in-package
:fare-quasiquote
)
(
declaim
(
optimize
(
speed
1
)
(
safety
3
)
(
debug
3
)))
...
...
@@ -308,7 +307,7 @@ of the result of the top operation applied to the expression"
((
read
)
#'
(
lambda
(
stream
char
)
(
declare
(
ignore
char
))
(
macroexpand-1
(
read-quasiquote
stream
))))
(
values
(
macroexpand-1
(
read-quasiquote
stream
)
))))
((
macroexpand
)
#'
(
lambda
(
stream
char
)
(
declare
(
ignore
char
))
...
...
Write
Preview
Markdown
is supported
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