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)]
This is an automatic notification regarding your bug report
which was filed against the emacs package:
#1027: 23.0.60; pcomplete/rpm does not complete "rpm -qip filepath"
It has been closed by Chong Yidong <cyd <at> stupidchicken.com>.
Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Chong Yidong <cyd <at> stupidchicken.com> by
replying to this email.
--
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)]
> 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.
[Message part 3 (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")
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.