]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/package.el: Make archive and status pseudo-keywords
authorArtur Malabarba <bruce.connor.am@gmail.com>
Mon, 20 Apr 2015 06:20:54 +0000 (07:20 +0100)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Mon, 20 Apr 2015 19:47:18 +0000 (20:47 +0100)
(package--has-keyword-p): Understand "arc:xxxx" and "status:xxxx"
as special keywords which match agains package archive and status
respectively.

* etc/NEWS: Document it.

etc/NEWS
lisp/emacs-lisp/package.el

index a9c0d2e307e067f6fab098bf091e9bc5858dd39a..9dd0e1512cc18694e5226c043e4d32c68c290d58 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -238,6 +238,11 @@ in the surrounding GUI (using the OSC-52 escape sequence).
 ** xterm-mouse-mode now supports mouse-tracking (if your xterm supports it).
 
 ** package.el
+
+*** When filtering the package menu, keywords starting with "arc:" or
+"status:" represent package archive or status, respectively, instead
+of actual keywords.
+
 *** Most functions which involve downloading information now take an
 ASYNC argument.  If it is non-nil, package.el performs the download(s)
 asynchronously.
index 9cd6b3b9a66ed541f60072752e78947bafb53a8d..4590582575fda9e12c28409f5bff97994a04182f 100644 (file)
@@ -2535,12 +2535,14 @@ Built-in packages are converted with `package--from-builtin'."
   "Test if package DESC has any of the given KEYWORDS.
 When none are given, the package matches."
   (if keywords
-      (let* ((desc-keywords (and desc (package-desc--keywords desc)))
-             found)
-        (dolist (k keywords)
-          (when (and (not found)
-                     (member k desc-keywords))
-            (setq found t)))
+      (let ((desc-keywords (and desc (package-desc--keywords desc)))
+            found)
+        (while (and (not found) keywords)
+          (let ((k (pop keywords)))
+            (setq found
+                  (or (string= k (concat "arc:" (package-desc-archive desc)))
+                      (string= k (concat "status:" (package-desc-status desc)))
+                      (member k desc-keywords)))))
         found)
     t))