From: Glenn Morris Date: Wed, 24 Jun 2009 03:44:35 +0000 (+0000) Subject: (pcomplete/rpm): Doc fix. X-Git-Tag: emacs-pretest-23.0.96~83 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=512b7b9926767f6b658ee06ddba02009df686f59;p=emacs.git (pcomplete/rpm): Doc fix. --- diff --git a/lisp/pcmpl-rpm.el b/lisp/pcmpl-rpm.el index 9335248dcfe..0f596304c9a 100644 --- a/lisp/pcmpl-rpm.el +++ b/lisp/pcmpl-rpm.el @@ -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)))