summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-utils.el26
1 files changed, 13 insertions, 13 deletions
diff --git a/apt-utils.el b/apt-utils.el
index e81c9d7..42626c3 100644
--- a/apt-utils.el
+++ b/apt-utils.el
@@ -455,7 +455,7 @@ installed packages; uses `apt-utils-dpkg-program'."
(when (equal files '("/."))
(setq files nil))
(cond
- ((memq type '(normal normal-showpkg))
+ ((memq type '(normal normal-showpkg normal-installed))
(if files
(progn
;; Some versions of Emacs won't update dired for the same
@@ -718,7 +718,7 @@ That is, not a normal-showpkg, search or a virtual package."
(defun apt-utils-toggle-package-p ()
"Return non-nil if we can toggle between package and showpkg.
See also `apt-utils-toggle-package-info'."
- (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(defun apt-utils-check-package-lists ()
"Determine whether package lists need rebuilding."
@@ -746,7 +746,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -773,7 +773,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -800,7 +800,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -827,7 +827,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -854,7 +854,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -881,7 +881,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -908,7 +908,7 @@ See also `apt-utils-toggle-package-info'."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let* ((package (caar apt-utils-package-history))
@@ -935,7 +935,7 @@ offer a choice."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let ((package (caar apt-utils-package-history))
@@ -978,7 +978,7 @@ a choice."
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(let ((package (caar apt-utils-package-history))
@@ -1014,7 +1014,7 @@ a choice."
(interactive)
(let ((package (caar apt-utils-package-history))
(type (cdar apt-utils-package-history)))
- (if (memq type '(normal normal-showpkg))
+ (if (memq type '(normal normal-showpkg normal-installed))
(let ((info (apt-utils-get-installed-info package)))
(if info
(message (apply #'format
@@ -1832,7 +1832,7 @@ The URL can contain tokens that need formatting (see
(cond
((not (equal major-mode 'apt-utils-mode))
(message "Not in APT utils buffer."))
- ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg)))
+ ((not (memq (cdar apt-utils-package-history) '(normal normal-showpkg normal-installed)))
(message "Not a normal package."))
(t
(browse-url (apt-utils-web-format-url url)))))