]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't use `mapconcat` for effect
authorMattias Engdegård <mattiase@acm.org>
Mon, 10 Apr 2023 13:20:27 +0000 (15:20 +0200)
committerMattias Engdegård <mattiase@acm.org>
Mon, 10 Apr 2023 13:20:27 +0000 (15:20 +0200)
* lisp/progmodes/make-mode.el (makefile-browser-fill):
* lisp/url/url-mailto.el (url-mailto):
Use `mapc` instead of `mapconcat`.

lisp/progmodes/make-mode.el
lisp/url/url-mailto.el

index 087974bd1f002568eb5f623521fddb39f0b0ec2f..5ea03b9e8529b173335ca70e99d94973a8f90ea9 100644 (file)
@@ -1326,14 +1326,12 @@ Fill comments, backslashed lines, and variable definitions specially."
   (let ((inhibit-read-only t))
     (goto-char (point-min))
     (erase-buffer)
-    (mapconcat
+    (mapc
      (lambda (item) (insert (makefile-browser-format-target-line (car item) nil) "\n"))
-     targets
-     "")
-    (mapconcat
+     targets)
+    (mapc
      (lambda (item) (insert (makefile-browser-format-macro-line (car item) nil) "\n"))
-     macros
-     "")
+     macros)
     (sort-lines nil (point-min) (point-max))
     (goto-char (1- (point-max)))
     (delete-char 1)                    ; remove unnecessary newline at eob
index 24e64e99c9f9bf8b76f1aa99cdb37662feedf6a0..04d6d9681ffe5baa095daf23dc274fd57e62b019 100644 (file)
              (url-mail-goto-field nil)
            (url-mail-goto-field "subject")))
       (if url-request-extra-headers
-         (mapconcat
+         (mapc
           (lambda (x)
             (url-mail-goto-field (car x))
             (insert (cdr x)))
-          url-request-extra-headers ""))
+          url-request-extra-headers))
       (goto-char (point-max))
       (insert url-request-data)
       ;; It seems Microsoft-ish to send without warning.