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
7628b337
Commit
7628b337
authored
Dec 02, 2007
by
Glenn Morris
Browse files
(byte-compile-declare-function): Reverse branches of if statement.
parent
e1970249
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+4
-4
No files found.
lisp/emacs-lisp/bytecomp.el
View file @
7628b337
...
...
@@ -2823,10 +2823,10 @@ If FORM is a lambda or a macro, byte-compile it as a function."
(
put
'declare-function
'byte-hunk-handler
'byte-compile-declare-function
)
(
defun
byte-compile-declare-function
(
form
)
(
push
(
cons
(
nth
1
form
)
(
if
(
or
(
<
(
length
form
)
4
)
; arglist not specified
(
not
(
listp
(
nth
3
form
)))
)
t
(
list
'declared
(
nth
3
form
))))
(
if
(
and
(
>
(
length
form
)
3
)
(
listp
(
nth
3
form
)))
(
list
'declared
(
nth
3
form
))
t
))
; arglist not specified
byte-compile-function-environment
)
nil
)
...
...
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