GNU bug report logs -
#1027
23.0.60; pcomplete/rpm does not complete "rpm -qip filepath"
Previous Next
Reported by: Jens Petersen <petersen <at> redhat.com>
Date: Fri, 26 Sep 2008 01:05:05 UTC
Severity: normal
Tags: patch
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 23 Oct 2008 18:09:54 -0400
with message-id <87d4hrrmj1.fsf <at> 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 <at> donarmstrong.com
immediately.)
--
1027: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1027
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
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 <at> 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")
[Message part 3 (message/rfc822, inline)]
> 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.
This bug report was last modified 16 years and 214 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.