forked from pool/quilt
6732de62cf
- quilt-el-fix-tramp-support.patch: quilt-el: Fix tramp support. - quilt-el-fix-patch-select-completion.patch: quilt-el: Fix patch select completion. - hackweek-11-13-setup-let-normalize_path-deal-with-dot.patch: setup: Let normalize_path deal with ".". - hackweek-11-14-setup-fix-link-creation.patch: setup: Fix link creation. OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/quilt?expand=0&rev=94
23 lines
696 B
Diff
23 lines
696 B
Diff
From: Leonid Movshovich <event.riga@gmail.com>
|
|
Date: Sun, 18 Jan 2015 10:04:56 +0100
|
|
Subject: quilt-el: Fix patch select completion
|
|
Upstream: Committed (88decf920d2741ab4411f75827ce72beb0dc6995)
|
|
|
|
A typo in quilt-patch-list prevents patch select completion operation.
|
|
|
|
Reviewed and tested by Satoru Takeuchi.
|
|
|
|
diff --git a/lib/quilt.el b/lib/quilt.el
|
|
index 0a57b05..be359e5 100644
|
|
--- a/lib/quilt.el
|
|
+++ b/lib/quilt.el
|
|
@@ -126,7 +126,7 @@
|
|
|
|
(defun quilt-patch-list ()
|
|
"Return the list of the name of patches."
|
|
- (quilt-cmd-to-list "seriess"))
|
|
+ (quilt-cmd-to-list "series"))
|
|
|
|
(defun quilt-files-affected (&optional first last)
|
|
"Return the file names which modified from FIRST to LAST."
|