Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cd44022c
Commit
cd44022c
authored
Oct 28, 2012
by
Daniel Hackney
Committed by
Stefan Monnier
Oct 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/emacs-lisp/package.el (package-generate-autoloads): Kill buffer
"PKGNAME-autoloads.el" in case we created it.
parent
b9383404
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
+5
-0
lisp/emacs-lisp/package.el
lisp/emacs-lisp/package.el
+3
-1
No files found.
lisp/ChangeLog
View file @
cd44022c
2012-10-28 Daniel Hackney <dan@haxney.org>
* emacs-lisp/package.el (package-generate-autoloads): Kill buffer
"PKGNAME-autoloads.el" in case we created it.
2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuffer.el (completion--sifn-requote): Rewrite to handle things
...
...
lisp/emacs-lisp/package.el
View file @
cd44022c
...
...
@@ -590,7 +590,9 @@ EXTRA-PROPERTIES is currently unused."
(
version-control
'never
))
(
unless
(
fboundp
'autoload-ensure-default-file
)
(
package-autoload-ensure-default-file
generated-autoload-file
))
(
update-directory-autoloads
pkg-dir
)))
(
update-directory-autoloads
pkg-dir
)
(
let
((
buf
(
find-buffer-visiting
generated-autoload-file
)))
(
when
buf
(
kill-buffer
buf
)))))
(
defvar
tar-parse-info
)
(
declare-function
tar-untar-buffer
"tar-mode"
())
...
...
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