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
LSH
lsh
Commits
6b5cb05f
Commit
6b5cb05f
authored
Sep 24, 2001
by
Niels Möller
Browse files
(process-expr): Handle empty parameter list.
Rev: src/scm/gaba.scm:1.12
parent
3b9fc8de
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scm/gaba.scm
View file @
6b5cb05f
...
...
@@ -542,7 +542,8 @@
;; (werror "foo\n")
(
let
((
name
(
get
'name
attributes
cadr
))
(
globals
(
or
(
get
'globals
attributes
cdr
)
'
()))
(
params
(
preprocess-vars
#f
(
get
'params
attributes
cdr
)))
(
params
(
preprocess-vars
#f
(
or
(
get
'params
attributes
cdr
)
'
())))
(
expr
(
get
'expr
attributes
cadr
)))
(
werror
"Processing expression ~S\n"
name
)
(
let
((
translated
(
translate
expr
)))
...
...
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