Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a5ad278d
Commit
a5ad278d
authored
May 07, 2005
by
Eli Zaretskii
Browse files
(cl-transform-lambda): Recognize `declare' as well as `interactive',
so that defmacro* would recognize `declare' forms.
parent
561bd1a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-macs.el
+2
-1
No files found.
lisp/ChangeLog
View file @
a5ad278d
2005-05-07 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
* emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
as well as `interactive', so that defmacro* would recognize
`declare' forms.
2005-05-07 Eli Zaretskii <eliz@gnu.org>
* emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Explain
...
...
lisp/emacs-lisp/cl-macs.el
View file @
a5ad278d
...
...
@@ -233,7 +233,8 @@ ARGLIST allows full Common Lisp conventions."
(
bind-defs
nil
)
(
bind-enquote
nil
)
(
bind-inits
nil
)
(
bind-lets
nil
)
(
bind-forms
nil
)
(
header
nil
)
(
simple-args
nil
))
(
while
(
or
(
stringp
(
car
body
))
(
eq
(
car-safe
(
car
body
))
'interactive
))
(
while
(
or
(
stringp
(
car
body
))
(
memq
(
car-safe
(
car
body
))
'
(
interactive
declare
)))
(
push
(
pop
body
)
header
))
(
setq
args
(
if
(
listp
args
)
(
copy-list
args
)
(
list
'&rest
args
)))
(
let
((
p
(
last
args
)))
(
if
(
cdr
p
)
(
setcdr
p
(
list
'&rest
(
cdr
p
)))))
...
...
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