summaryrefslogtreecommitdiff
path: root/debian-bug.el
diff options
context:
space:
mode:
authorFabrice Bauzac <noon@mykolab.com>2023-06-07 23:25:26 +0200
committerFabrice Bauzac <noon@mykolab.com>2023-06-07 23:25:26 +0200
commitc813d30f024b163dce9dcc5461719232c58d823c (patch)
tree13d7759ef282235fc7ed21ed692b6a7167daa661 /debian-bug.el
parenta3ef20c269b9192710567571b20718f572942bc4 (diff)
Fix warning about mapcar's unused return value
Diffstat (limited to 'debian-bug.el')
-rw-r--r--debian-bug.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian-bug.el b/debian-bug.el
index 467f29b..7d48c5a 100644
--- a/debian-bug.el
+++ b/debian-bug.el
@@ -649,8 +649,8 @@ The obarray associates each package with the installed version of the package."
(make-vector (1- (ash 4 (logb packages))) 0)
debian-bug-packages-date
(nth 5 (file-attributes debian-bug-status-file)))
- (mapcar 'debian-bug-intern (mapcar 'list debian-bug-pseudo-packages))
- (mapcar 'debian-bug-intern real-pkgs)
+ (mapc 'debian-bug-intern (mapcar 'list debian-bug-pseudo-packages))
+ (mapc 'debian-bug-intern real-pkgs)
(message "Building list of installed packages...done")))
(if debian-bts-control-for-emacs
'(("bzr") ("debbugs.gnu.org") ("gnus") ("octave")