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
a27b451e
Commit
a27b451e
authored
Mar 30, 2001
by
Miles Bader
Browse files
(interactive-form): Fix paren typo.
parent
96e29ebe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/subr.el
lisp/subr.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a27b451e
2001-03-30 Miles Bader <miles@gnu.org>
* subr.el (interactive-form): Fix paren typo.
2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
* emacs-lisp/profile.el: Say that it's obsolete in the header
...
...
lisp/subr.el
View file @
a27b451e
...
...
@@ -1468,7 +1468,7 @@ If function is a command (see `commandp'), value is a list of the form
(
when
(
stringp
(
car
function
))
(
setq
function
(
cdr
function
)))
(
let
((
form
(
car
function
)))
(
when
(
eq
(
car-safe
form
'interactive
)
)
(
when
(
eq
(
car-safe
form
)
'interactive
)
(
copy-sequence
form
)))))))
(
defun
assq-delete-all
(
key
alist
)
...
...
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