summaryrefslogtreecommitdiff
path: root/lisp/mail/mail-extr.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-04-01 22:04:21 +0200
committerStefan Kangas <stefan@marxist.se>2021-04-01 22:05:16 +0200
commite5b8d071e0066a2bab28744f21d58ac422793381 (patch)
tree0c5ecdfb57b53c42f1fc2e745d7cc33a5dbc01ee /lisp/mail/mail-extr.el
parenta5125f98b8e977abfcef74ddd7720ccb63328560 (diff)
downloademacs-e5b8d071e0066a2bab28744f21d58ac422793381.tar.gz
Remove redundant #' before lambda in {mail,net,url}/*.el
* lisp/mail/mail-extr.el: * lisp/mail/rmail.el (rmail-start-mail): * lisp/net/gnutls.el (gnutls-boot-parameters): * lisp/net/imap.el (imap-starttls-open): * lisp/net/pop3.el (pop3-list): * lisp/url/url-cookie.el (url-cookie-save-interval): * lisp/url/url-history.el (url-history-save-interval) (url-history-track): * lisp/url/url-mailto.el (url-mailto): Remove redundant #' before lambda.
Diffstat (limited to 'lisp/mail/mail-extr.el')
-rw-r--r--lisp/mail/mail-extr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el
index 7fbdfefc461..88fb0866856 100644
--- a/lisp/mail/mail-extr.el
+++ b/lisp/mail/mail-extr.el
@@ -2236,13 +2236,13 @@ place. It affects how `mail-extract-address-components' works."
;(let ((all nil))
-; (mapatoms #'(lambda (x)
+; (mapatoms (lambda (x)
; (if (and (boundp x)
; (string-match "^mail-extr-" (symbol-name x)))
; (setq all (cons x all)))))
; (setq all (sort all #'string-lessp))
; (cons 'setq
-; (apply 'nconc (mapcar #'(lambda (x)
+; (apply 'nconc (mapcar (lambda (x)
; (list x (symbol-value x)))
; all))))