Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7117e105
Commit
7117e105
authored
Jun 22, 2012
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
parent
c8fff863
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/pcmpl-rpm.el
lisp/pcmpl-rpm.el
+4
-3
No files found.
lisp/ChangeLog
View file @
7117e105
2012-06-23 Glenn Morris <rgm@gnu.org>
* pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
Further GV/CL cleanups.
...
...
lisp/pcmpl-rpm.el
View file @
7117e105
...
...
@@ -67,8 +67,6 @@
;; Functions:
;; This can be slow, so:
;; Consider printing an explanatory message before running -qa.
(
defun
pcmpl-rpm-packages
()
"Return a list of all installed rpm packages."
(
if
(
and
pcmpl-rpm-cache
...
...
@@ -76,13 +74,16 @@
(
let
((
mtime
(
nth
5
(
file-attributes
pcmpl-rpm-cache-stamp-file
))))
(
and
mtime
(
not
(
time-less-p
pcmpl-rpm-cache-time
mtime
)))))
pcmpl-rpm-packages
(
message
"Getting list of installed rpms..."
)
(
setq
pcmpl-rpm-cache-time
(
current-time
)
pcmpl-rpm-packages
(
split-string
(
apply
'pcomplete-process-result
"rpm"
(
append
'
(
"-q"
"-a"
)
(
if
(
stringp
pcmpl-rpm-query-options
)
(
list
pcmpl-rpm-query-options
)
pcmpl-rpm-query-options
)))))))
pcmpl-rpm-query-options
)))))
(
message
"Getting list of installed rpms...done"
)
pcmpl-rpm-packages
))
;; Should this use pcmpl-rpm-query-options?
;; I don't think it would speed it up at all (?).
...
...
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