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
a434b175
Commit
a434b175
authored
May 25, 2001
by
Stefan Monnier
Browse files
(byte-compile-inline-expand):
Fix the arg of `load'. From Dave Love <fx@gnu.org>.
parent
4e7e1f03
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/byte-opt.el
lisp/emacs-lisp/byte-opt.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a434b175
2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
* emacs-lisp/byte-opt.el (byte-compile-inline-expand):
Fix the arg of `load'. From Dave Love <fx@gnu.org>.
2001-05-25 Andrew Choi <akochoi@i-cable.com>
* international/titdic-cnv.el (ctlau-gb-converter): `\' should
...
...
lisp/emacs-lisp/byte-opt.el
View file @
a434b175
...
...
@@ -265,7 +265,7 @@
form
)
;; else
(
when
(
and
(
consp
fn
)
(
eq
(
car
fn
)
'autoload
))
(
load
(
nth
2
fn
))
(
load
(
nth
1
fn
))
(
setq
fn
(
or
(
and
(
fboundp
name
)
(
symbol-function
name
))
(
cdr
(
assq
name
byte-compile-function-environment
)))))
(
if
(
and
(
consp
fn
)
(
eq
(
car
fn
)
'autoload
))
...
...
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