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
e645e77b
Commit
e645e77b
authored
Jan 30, 2000
by
Dave Love
Browse files
(jka-compr-load): Fix up load-history.
parent
2995b042
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/jka-compr.el
lisp/jka-compr.el
+7
-2
No files found.
lisp/ChangeLog
View file @
e645e77b
2000-01-30 Dave Love <fx@gnu.org>
* jka-compr.el (jka-compr-load): Fix up load-history.
* emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
* emacs-lisp/cl-macs.el: Revert previous change.
...
...
lisp/jka-compr.el
View file @
e645e77b
...
...
@@ -704,9 +704,14 @@ There should be no more than seven characters after the final `/'."
(
let
((
load-force-doc-strings
t
))
(
load
load-file
noerror
t
t
))
(
or
nomessage
(
message
"Loading %s...done."
file
)))
(
message
"Loading %s...done."
file
))
;; Fix up the load history to point at the right library.
(
let
((
l
(
assoc
load-file
load-history
)))
;; Remove .gz and .elc?.
(
while
(
file-name-extension
file
)
(
setq
file
(
file-name-sans-extension
file
)))
(
setcar
l
file
)))
(
jka-compr-delete-temp-file
local-copy
))
...
...
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