1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(pcomplete/rpm): Doc fix.

This commit is contained in:
Glenn Morris 2009-06-23 07:43:17 +00:00
parent f529f302e9
commit 33e2c2e5b3
2 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,7 @@
2009-06-23 Glenn Morris <rgm@gnu.org>
* pcmpl-rpm.el (pcomplete/rpm): Doc fix.
* bindings.el (mode-line-modified): Fix case of "Buffer is modified".
* textmodes/ispell.el (ispell-local-dictionary): Doc fix.

View file

@ -20,7 +20,7 @@
;;; Commentary:
;; These functions provide completion rules for RedHat's `rpm' tool.
;; These functions provide completion rules for the `rpm' command.
;;; Code:
@ -53,11 +53,8 @@
;;;###autoload
(defun pcomplete/rpm ()
"Completion for RedHat's `rpm' command.
These rules were taken from the output of `rpm --help' on a RedHat 6.1
system. They follow my interpretation of what followed, but since I'm
not a major rpm user/builder, please send me any corrections you find.
You can use \\[report-emacs-bug] to do so."
"Completion for the `rpm' command."
;; Originally taken from the output of `rpm --help' on a Red Hat 6.1 system.
(let (mode)
(while (<= pcomplete-index pcomplete-last)
(unless mode
@ -136,7 +133,7 @@ You can use \\[report-emacs-bug] to do so."
(if (pcomplete-match "^-" 0)
(pcomplete-opt "af.p(pcmpl-rpm-files)ilsdcvR")
(if (pcomplete-test "-[^-]*p" 'first 1)
(pcomplete-here (pcmpl-rpm-files))
(pcomplete-here (pcmpl-rpm-files))
(pcomplete-here (pcmpl-rpm-packages))))))
((pcomplete-test "--pipe")
(pcomplete-here* (funcall pcomplete-command-completion-function)))