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
climacs
climacs
Commits
bacefa22
Commit
bacefa22
authored
Jul 11, 2006
by
Troels Henriksen
Browse files
Added indentation rule for readtime-evaluation-forms.
parent
00079556
Changes
1
Hide whitespace changes
Inline
Side-by-side
lisp-syntax.lisp
View file @
bacefa22
...
...
@@ -2438,6 +2438,11 @@ object. Otherwise, nil will be returned.")
((
null
(
cdr
path
))
(
values
(
first-form
(
children
tree
))
0
))))
(
defmethod
indent-form
((
syntax
lisp-syntax
)
(
tree
readtime-evaluation-form
)
path
)
(
if
(
null
(
cdr
path
))
(
values
tree
0
)
(
indent-form
syntax
(
elt-form
(
children
tree
)
0
)
(
cdr
path
))))
(
defmethod
indent-form
((
syntax
lisp-syntax
)
(
tree
list-form
)
path
)
(
if
(
=
(
car
path
)
1
)
;; before first element
...
...
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