summaryrefslogtreecommitdiff
path: root/debian-bug.el
diff options
context:
space:
mode:
authorXIYUE DENG <manphiz@gmail.com>2023-10-03 18:34:57 +0000
committerXIYUE DENG <manphiz@gmail.com>2023-10-03 18:34:57 +0000
commitc70e9e57d70a7a3449789a5f281af50ec8f4cb5b (patch)
tree1371f21bc3d444f42535ee4ba4817fcf247c6bb2 /debian-bug.el
parent4a6b04e8252103ca675b31de5b59c9ea676cdde3 (diff)
parentc813d30f024b163dce9dcc5461719232c58d823c (diff)
Merge branch 'mapcar' into 'master'
Fix warning about mapcar's unused return value See merge request emacsen-team/debian-el!9
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 a8495e5..c4a65b4 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")