bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#1027: marked as done (23.0.60; pcomplete/rpm does not complete "rpm


From: Emacs bug Tracking System
Subject: bug#1027: marked as done (23.0.60; pcomplete/rpm does not complete "rpm -qip filepath")
Date: Thu, 23 Oct 2008 15:15:03 -0700

Your message dated Thu, 23 Oct 2008 18:09:54 -0400
with message-id <87d4hrrmj1.fsf@cyd.mit.edu>
and subject line Re: 23.0.60; pcomplete/rpm does not complete "rpm -qip 
filepath"
has caused the Emacs bug report #1027,
regarding 23.0.60; pcomplete/rpm does not complete "rpm -qip filepath"
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
1027: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1027
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems
--- Begin Message --- Subject: 23.0.60; pcomplete/rpm does not complete "rpm -qip filepath" Date: Fri, 26 Sep 2008 10:57:30 +1000
Hi,

In eshell, pcomplete/rpm does not handle the -p (file) option well currently:

eg "rpm -q -p filepath..." completes but not "rpm -qp filepath...".

Here is an improvement which at least checks the first argument for a -p 
option, so that "rpm -qp", "rpm --qp --changelog", etc all file complete rather 
than querying the rpm database.  I think this is good enough for now, though 
strictly all args should be checked for a -p option.

Jens


2008-09-26  Jens Petersen  <petersen@redhat.com>

        * pcmpl-rpm.el (pcomplete/rpm): Make "rpm -qp" use file completion.


Index: lisp/pcmpl-rpm.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/pcmpl-rpm.el,v
retrieving revision 1.13
diff -u -r1.13 pcmpl-rpm.el
--- lisp/pcmpl-rpm.el   6 May 2008 07:57:45 -0000       1.13
+++ lisp/pcmpl-rpm.el   26 Sep 2008 00:22:31 -0000
@@ -135,7 +135,9 @@
                 (pcmpl-rpm-all-query "--requires")))))
          (if (pcomplete-match "^-" 0)
              (pcomplete-opt "af.p(pcmpl-rpm-files)ilsdcvR")
-           (pcomplete-here (pcmpl-rpm-packages)))))
+           (if (pcomplete-test "-[^-]*p" 'first 1)
+               (pcomplete-here (pcmpl-rpm-files))      
+             (pcomplete-here (pcmpl-rpm-packages))))))
        ((pcomplete-test "--pipe")
        (pcomplete-here* (funcall pcomplete-command-completion-function)))
        ((pcomplete-test "--rmsource")



--- End Message ---
--- Begin Message --- Subject: Re: 23.0.60; pcomplete/rpm does not complete "rpm -qip filepath" Date: Thu, 23 Oct 2008 18:09:54 -0400
> In eshell, pcomplete/rpm does not handle the -p (file) option well
> currently:
>
> eg "rpm -q -p filepath..." completes but not "rpm -qp filepath...".
>
> Here is an improvement which at least checks the first argument for a
> -p option, so that "rpm -qp", "rpm --qp --changelog", etc all file
> complete rather than querying the rpm database.  I think this is good
> enough for now, though strictly all args should be checked for a -p
> option.

Thanks.  I've checked in the patch.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]