]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove redundant #' before lambda
authorStefan Kangas <stefan@marxist.se>
Thu, 21 Oct 2021 21:35:07 +0000 (23:35 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 21 Oct 2021 21:35:07 +0000 (23:35 +0200)
* admin/unidata/unidata-gen.el (unidata-gen-table)
(unidata-gen-table-symbol, unidata-gen-table-integer)
(unidata-gen-table-numeric, unidata-gen-table-word-list)
(unidata-describe-decomposition):
* lisp/apropos.el (apropos-user-option):
* lisp/bookmark.el (bookmark-bmenu-search):
* lisp/composite.el (unicode-category-table):
* lisp/elec-pair.el (electric-pair--balance-info):
* lisp/electric.el (electric-quote-chars):
* lisp/emulation/cua-base.el (cua-rectangle-mark-key):
* lisp/epa-hook.el (epa-file-encrypt-to):
* lisp/faces.el (face-font-selection-order)
(face-font-family-alternatives, face-font-registry-alternatives)
(face-valid-attribute-values, tty-run-terminal-initialization):
* lisp/files.el (recover-file, file-expand-wildcards):
* lisp/frame.el (frames-on-display-list):
* lisp/help-at-pt.el (help-at-pt-display-when-idle):
* lisp/help-fns.el (help-fns--face-attributes):
* lisp/ido.el (ido-mode, ido-unc-hosts):
* lisp/isearch.el (isearch-highlight-regexp)
(isearch-highlight-lines-matching-regexp):
* lisp/language/indian.el (script-regexp-alist):
* lisp/language/lao.el:
* lisp/leim/quail/ipa.el (ipa-x-sampa-prepend-to-keymap-entry):
* lisp/mh-e/mh-folder.el (mh-process-commands):
* lisp/mh-e/mh-mime.el (mh-display-with-external-viewer):
* lisp/ps-mule.el (ps-mule-end-job):
* lisp/ps-print.el (ps-color-scale, ps-background-pages)
(ps-background-text, ps-background-image, ps-background)
(ps-begin-job, ps-print-translation-table):
* lisp/recentf.el (recentf-sort-ascending)
(recentf-sort-descending, recentf-sort-basenames-ascending)
(recentf-sort-basenames-descending)
(recentf-sort-directories-ascending)
(recentf-sort-directories-descending):
* lisp/replace.el (occur-engine-add-prefix):
* lisp/select.el (xselect--encode-string):
* lisp/server.el (server-use-tcp):
* lisp/ses.el (ses-sort-column):
* lisp/sort.el (sort-columns):
* lisp/term/ns-win.el (window-system-initialization):
* lisp/tree-widget.el (tree-widget-image-formats):
* lisp/whitespace.el (whitespace-report-region): Remove redundant #'
before lambda.

31 files changed:
admin/unidata/unidata-gen.el
lisp/apropos.el
lisp/bookmark.el
lisp/composite.el
lisp/elec-pair.el
lisp/electric.el
lisp/emulation/cua-base.el
lisp/epa-hook.el
lisp/faces.el
lisp/files.el
lisp/frame.el
lisp/help-at-pt.el
lisp/help-fns.el
lisp/ido.el
lisp/isearch.el
lisp/language/indian.el
lisp/language/lao.el
lisp/leim/quail/ipa.el
lisp/mh-e/mh-folder.el
lisp/mh-e/mh-mime.el
lisp/ps-mule.el
lisp/ps-print.el
lisp/recentf.el
lisp/replace.el
lisp/select.el
lisp/server.el
lisp/ses.el
lisp/sort.el
lisp/term/ns-win.el
lisp/tree-widget.el
lisp/whitespace.el

index abd41e34a48fa813b93efdcb3c310468f91ada7f..fc397a9a6caa275084b50bd877f698d24f6cd808 100644 (file)
@@ -583,17 +583,17 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
                (aset vec (- range start) val-code))
            (setq tail (cdr tail)))
          (setq str "\002" val-code -1 count 0)
-         (mapc #'(lambda (x)
-                   (if (= val-code x)
-                       (setq count (1+ count))
-                     (if (> count 2)
-                         (setq str (concat str (string val-code
-                                                       (+ count 128))))
-                       (if (= count 2)
-                           (setq str (concat str (string val-code val-code)))
-                         (if (= count 1)
-                             (setq str (concat str (string val-code))))))
-                     (setq val-code x count 1)))
+          (mapc (lambda (x)
+                  (if (= val-code x)
+                      (setq count (1+ count))
+                    (if (> count 2)
+                        (setq str (concat str (string val-code
+                                                      (+ count 128))))
+                      (if (= count 2)
+                          (setq str (concat str (string val-code val-code)))
+                        (if (= count 1)
+                            (setq str (concat str (string val-code))))))
+                    (setq val-code x count 1)))
                vec)
          (if (= count 128)
              (if val
@@ -613,8 +613,8 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
 
 (defun unidata-gen-table-symbol (prop index default-value val-list)
   (let ((table (unidata-gen-table prop index
-                                 #'(lambda (x) (and (> (length x) 0)
-                                                    (intern x)))
+                                  (lambda (x) (and (> (length x) 0)
+                                              (intern x)))
                                  default-value val-list)))
     (set-char-table-extra-slot table 1 0)
     (set-char-table-extra-slot table 2 1)
@@ -622,8 +622,8 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
 
 (defun unidata-gen-table-integer (prop index default-value val-list)
   (let ((table (unidata-gen-table prop index
-                                 #'(lambda (x) (and (> (length x) 0)
-                                                    (string-to-number x)))
+                                  (lambda (x) (and (> (length x) 0)
+                                              (string-to-number x)))
                                  default-value val-list)))
     (set-char-table-extra-slot table 1 0)
     (set-char-table-extra-slot table 2 1)
@@ -631,13 +631,13 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
 
 (defun unidata-gen-table-numeric (prop index default-value val-list)
   (let ((table (unidata-gen-table prop index
-                                 #'(lambda (x)
-                                     (if (string-match "/" x)
-                                         (/ (float (string-to-number x))
-                                            (string-to-number
-                                             (substring x (match-end 0))))
-                                       (if (> (length x) 0)
-                                           (string-to-number x))))
+                                  (lambda (x)
+                                    (if (string-match "/" x)
+                                        (/ (float (string-to-number x))
+                                           (string-to-number
+                                            (substring x (match-end 0))))
+                                      (if (> (length x) 0)
+                                          (string-to-number x))))
                                  default-value val-list)))
     (set-char-table-extra-slot table 1 0)
     (set-char-table-extra-slot table 2 2)
@@ -1000,7 +1000,7 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
                       (cl-incf (alist-get elt (cdr word-list) 0)))))
              (set-char-table-range table (cons start limit) vec))))))
     (setq word-list (sort (cdr word-list)
-                         #'(lambda (x y) (> (cdr x) (cdr y)))))
+                          (lambda (x y) (> (cdr x) (cdr y)))))
     (setq tail word-list idx 0)
     (while tail
       (setcdr (car tail) (unidata-encode-word idx))
@@ -1266,11 +1266,11 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
 
 (defun unidata-describe-decomposition (val)
   (mapconcat
-   #'(lambda (x)
-       (if (symbolp x) (symbol-name x)
-        (concat (string ?')
-                (compose-string (string x) 0 1 (string ?\t x ?\t))
-                (string ?'))))
+   (lambda (x)
+     (if (symbolp x) (symbol-name x)
+       (concat (string ?')
+               (compose-string (string x) 0 1 (string ?\t x ?\t))
+               (string ?'))))
    val " "))
 
 (defun unidata-describe-bidi-bracket-type (val)
index fc15cd3e011f192c928e4ed1123704c106af6c39..00919ed91b199f2720be9303bdeb256c6a992d09 100644 (file)
@@ -515,9 +515,9 @@ variables, not just user options."
                      current-prefix-arg))
   (apropos-command pattern nil
                   (if (or do-all apropos-do-all)
-                      #'(lambda (symbol)
-                          (and (boundp symbol)
-                               (get symbol 'variable-documentation)))
+                       (lambda (symbol)
+                         (and (boundp symbol)
+                              (get symbol 'variable-documentation)))
                     #'custom-variable-p)))
 
 ;;;###autoload
index 22520ebb7af2f15b652fe2ee1e9f1e50a840afd4..a4c28e751ca419d8628b8d3dca1ae22e3f5d6cd5 100644 (file)
@@ -2314,10 +2314,10 @@ Prompt with completion for the new path."
             (lambda ()
               (setq timer (run-with-idle-timer
                            bookmark-search-delay 'repeat
-                           #'(lambda (buf)
-                               (with-current-buffer buf
-                                 (bookmark-bmenu-filter-alist-by-regexp
-                                  (minibuffer-contents))))
+                           (lambda (buf)
+                             (with-current-buffer buf
+                               (bookmark-bmenu-filter-alist-by-regexp
+                                (minibuffer-contents))))
                            (current-buffer))))
           (read-string "Pattern: ")
           (when timer (cancel-timer timer) (setq timer nil)))
index 99f528a077906fd6310fbfde9cf9474478560e36..b5072de5a40dd68be9ba8b1495101ab65b7a45ee 100644 (file)
@@ -739,9 +739,9 @@ All non-spacing characters have this function in
   (let ((elt `([,(purecopy "\\c.\\c^+") 1 compose-gstring-for-graphic]
               [nil 0 compose-gstring-for-graphic])))
     (map-char-table
-     #'(lambda (key val)
-        (if (memq val '(Mn Mc Me))
-            (set-char-table-range composition-function-table key elt)))
+     (lambda (key val)
+       (if (memq val '(Mn Mc Me))
+           (set-char-table-range composition-function-table key elt)))
      unicode-category-table))
   ;; for dotted-circle
   (aset composition-function-table #x25CC
@@ -901,6 +901,4 @@ For more information on Auto Composition mode, see
 
 (provide 'composite)
 
-\f
-
 ;;; composite.el ends here
index ba88c819133137db58c7a1f2c483bf7f244ab444..f907bba4c6e21d10702dd09f63650ad0a425e698 100644 (file)
@@ -308,51 +308,51 @@ If point is not enclosed by any lists, return ((t) . (t))."
           ;; called when `scan-sexps' ran perfectly, when it found
           ;; a parenthesis pointing in the direction of travel.
           ;; Also when travel started inside a comment and exited it.
-          #'(lambda ()
-              (setq outermost (list t))
-              (unless innermost
-                (setq innermost (list t)))))
+          (lambda ()
+            (setq outermost (list t))
+            (unless innermost
+              (setq innermost (list t)))))
          (ended-prematurely-fn
           ;; called when `scan-sexps' crashed against a parenthesis
           ;; pointing opposite the direction of travel.  After
           ;; traversing that character, the idea is to travel one sexp
           ;; in the opposite direction looking for a matching
           ;; delimiter.
-          #'(lambda ()
-              (let* ((pos (point))
-                     (matched
-                      (save-excursion
-                        (cond ((< direction 0)
-                               (condition-case nil
-                                   (eq (char-after pos)
-                                       (electric-pair--with-uncached-syntax
-                                           (table)
-                                         (matching-paren
-                                          (char-before
-                                           (scan-sexps (point) 1)))))
-                                 (scan-error nil)))
-                              (t
-                               ;; In this case, no need to use
-                               ;; `scan-sexps', we can use some
-                               ;; `electric-pair--syntax-ppss' in this
-                               ;; case (which uses the quicker
-                               ;; `syntax-ppss' in some cases)
-                               (let* ((ppss (electric-pair--syntax-ppss
-                                             (1- (point))))
-                                      (start (car (last (nth 9 ppss))))
-                                      (opener (char-after start)))
-                                 (and start
-                                      (eq (char-before pos)
-                                          (or (with-syntax-table table
-                                                (matching-paren opener))
-                                              opener))))))))
-                     (actual-pair (if (> direction 0)
-                                      (char-before (point))
-                                    (char-after (point)))))
-                (unless innermost
-                  (setq innermost (cons matched actual-pair)))
-                (unless matched
-                  (setq outermost (cons matched actual-pair)))))))
+          (lambda ()
+            (let* ((pos (point))
+                   (matched
+                    (save-excursion
+                      (cond ((< direction 0)
+                             (condition-case nil
+                                 (eq (char-after pos)
+                                     (electric-pair--with-uncached-syntax
+                                      (table)
+                                      (matching-paren
+                                       (char-before
+                                        (scan-sexps (point) 1)))))
+                               (scan-error nil)))
+                            (t
+                             ;; In this case, no need to use
+                             ;; `scan-sexps', we can use some
+                             ;; `electric-pair--syntax-ppss' in this
+                             ;; case (which uses the quicker
+                             ;; `syntax-ppss' in some cases)
+                             (let* ((ppss (electric-pair--syntax-ppss
+                                           (1- (point))))
+                                    (start (car (last (nth 9 ppss))))
+                                    (opener (char-after start)))
+                               (and start
+                                    (eq (char-before pos)
+                                        (or (with-syntax-table table
+                                              (matching-paren opener))
+                                            opener))))))))
+                   (actual-pair (if (> direction 0)
+                                    (char-before (point))
+                                  (char-after (point)))))
+              (unless innermost
+                (setq innermost (cons matched actual-pair)))
+              (unless matched
+                (setq outermost (cons matched actual-pair)))))))
     (save-excursion
       (while (not outermost)
         (condition-case err
index 4394fae43667df69a2e034613ac4ea80ce915201..a2f24ca05c6822fcfb18caa6f96b27d4146677c2 100644 (file)
@@ -506,11 +506,11 @@ This list's members correspond to left single quote, right single
 quote, left double quote, and right double quote, respectively."
   :version "26.1"
   :type '(list character character character character)
-  :safe #'(lambda (x)
-           (pcase x
-             (`(,(pred characterp) ,(pred characterp)
-                ,(pred characterp) ,(pred characterp))
-              t)))
+  :safe (lambda (x)
+          (pcase x
+            (`(,(pred characterp) ,(pred characterp)
+               ,(pred characterp) ,(pred characterp))
+             t)))
   :group 'electricity)
 
 (defcustom electric-quote-paragraph t
index a98393fa2e5b4b5420d888fc02fb82ad334173b7..befcb4238237d4923d79b3eda05ffbb9ea9b4b5b 100644 (file)
@@ -396,17 +396,17 @@ and after the region marked by the rectangle to search."
 
 (defcustom cua-rectangle-mark-key [(control return)]
   "Global key used to toggle the cua rectangle mark."
-  :set #'(lambda (symbol value)
-          (set symbol value)
-          (when (and (boundp 'cua--keymaps-initialized)
-                     cua--keymaps-initialized)
-            (define-key cua-global-keymap value
-              #'cua-set-rectangle-mark)
-            (when (boundp 'cua--rectangle-keymap)
-              (define-key cua--rectangle-keymap value
-                #'cua-clear-rectangle-mark)
-              (define-key cua--region-keymap value
-                #'cua-toggle-rectangle-mark))))
+  :set (lambda (symbol value)
+         (set symbol value)
+         (when (and (boundp 'cua--keymaps-initialized)
+                    cua--keymaps-initialized)
+           (define-key cua-global-keymap value
+             #'cua-set-rectangle-mark)
+           (when (boundp 'cua--rectangle-keymap)
+             (define-key cua--rectangle-keymap value
+               #'cua-clear-rectangle-mark)
+             (define-key cua--region-keymap value
+               #'cua-toggle-rectangle-mark))))
   :type 'key-sequence)
 
 (defcustom cua-rectangle-modifier-key 'meta
index aa196851d4d0c401b242411965bc5698ccd9a151..5b250af6d706dc8e62bd02bbdb5e869a363412a4 100644 (file)
@@ -56,15 +56,15 @@ through Custom does that automatically."
 May either be a string or a list of strings.")
 
 (put 'epa-file-encrypt-to 'safe-local-variable
-     #'(lambda (val)
-        (or (stringp val)
-            (and (listp val)
-                 (catch 'safe
-                   (mapc (lambda (elt)
-                           (unless (stringp elt)
-                             (throw 'safe nil)))
-                         val)
-                   t)))))
+     (lambda (val)
+       (or (stringp val)
+           (and (listp val)
+                (catch 'safe
+                  (mapc (lambda (elt)
+                          (unless (stringp elt)
+                            (throw 'safe nil)))
+                        val)
+                  t)))))
 
 (put 'epa-file-encrypt-to 'permanent-local t)
 
index 58c57143d4dcfe09ce4954f933e76135e6a8a77b..83c6b695320a1c588b636885057c3aa0e85fc0d0 100644 (file)
@@ -88,9 +88,9 @@ a font height that isn't optimal."
   :tag "Font selection order"
   :type '(list symbol symbol symbol symbol)
   :group 'font-selection
-  :set #'(lambda (symbol value)
-          (set-default symbol value)
-          (internal-set-font-selection-order value)))
+  :set (lambda (symbol value)
+         (set-default symbol value)
+         (internal-set-font-selection-order value)))
 
 
 ;; In the absence of Fontconfig support, Monospace and Sans Serif are
@@ -140,9 +140,9 @@ ALTERNATIVE2 etc."
   :tag "Alternative font families to try"
   :type '(repeat (repeat string))
   :group 'font-selection
-  :set #'(lambda (symbol value)
-          (set-default symbol value)
-          (internal-set-alternative-font-family-alist value)))
+  :set (lambda (symbol value)
+         (set-default symbol value)
+         (internal-set-alternative-font-family-alist value)))
 
 
 ;; This is defined originally in xfaces.c.
@@ -167,9 +167,9 @@ REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
   :type '(repeat (repeat string))
   :version "21.1"
   :group 'font-selection
-  :set #'(lambda (symbol value)
-          (set-default symbol value)
-          (internal-set-alternative-font-registry-alist value)))
+  :set (lambda (symbol value)
+         (set-default symbol value)
+         (internal-set-alternative-font-registry-alist value)))
 
 \f
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1147,27 +1147,27 @@ an integer value."
            (:foundry
            (list nil))
           (:width
-           (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
+            (mapcar (lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
                    font-width-table))
            (:weight
-           (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
+            (mapcar (lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
                    font-weight-table))
           (:slant
-           (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
+            (mapcar (lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
                    font-slant-table))
           ((or :inverse-video :extend)
-           (mapcar #'(lambda (x) (cons (symbol-name x) x))
+            (mapcar (lambda (x) (cons (symbol-name x) x))
                    (internal-lisp-face-attribute-values attribute)))
            ((or :underline :overline :strike-through :box)
             (if (window-system frame)
-                (nconc (mapcar #'(lambda (x) (cons (symbol-name x) x))
+                (nconc (mapcar (lambda (x) (cons (symbol-name x) x))
                                (internal-lisp-face-attribute-values attribute))
-                       (mapcar #'(lambda (c) (cons c c))
+                       (mapcar (lambda (c) (cons c c))
                                (defined-colors frame)))
-             (mapcar #'(lambda (x) (cons (symbol-name x) x))
+              (mapcar (lambda (x) (cons (symbol-name x) x))
                      (internal-lisp-face-attribute-values attribute))))
            ((or :foreground :background)
-            (mapcar #'(lambda (c) (cons c c))
+            (mapcar (lambda (c) (cons c c))
                     (defined-colors frame)))
            (:height
             'integerp)
@@ -1182,7 +1182,7 @@ an integer value."
                                         x-bitmap-file-path)))))
            (:inherit
             (cons '("none" . nil)
-                  (mapcar #'(lambda (c) (cons (symbol-name c) c))
+                  (mapcar (lambda (c) (cons (symbol-name c) c))
                           (face-list))))
            (_
             (error "Internal error")))))
@@ -2286,19 +2286,19 @@ If you set `term-file-prefix' to nil, this function does nothing."
       (let* (term-init-func)
        ;; First, load the terminal initialization file, if it is
        ;; available and it hasn't been loaded already.
-       (tty-find-type #'(lambda (type)
-                          (let ((file (locate-library (concat term-file-prefix type))))
-                            (and file
-                                 (or (assoc file load-history)
-                                     (load (replace-regexp-in-string
-                                             "\\.el\\(\\.gz\\)?\\'" ""
-                                             file)
-                                            t t)))))
-                      type)
+        (tty-find-type (lambda (type)
+                         (let ((file (locate-library (concat term-file-prefix type))))
+                           (and file
+                                (or (assoc file load-history)
+                                    (load (replace-regexp-in-string
+                                           "\\.el\\(\\.gz\\)?\\'" ""
+                                           file)
+                                          t t)))))
+                       type)
        ;; Next, try to find a matching initialization function, and call it.
-       (tty-find-type #'(lambda (type)
-                          (fboundp (setq term-init-func
-                                         (intern (concat "terminal-init-" type)))))
+        (tty-find-type (lambda (type)
+                         (fboundp (setq term-init-func
+                                        (intern (concat "terminal-init-" type)))))
                       type)
        (when (fboundp term-init-func)
          (funcall term-init-func))
index 5a6a33721b3c226dd6a41e3e2eb5bc576f5bba4a..d498e5b7d2dc97aa864302a166dd688d07b23c84 100644 (file)
@@ -6682,12 +6682,12 @@ auto-save file, if that is more recent than the visited file."
                        (abbreviate-file-name file-name)))
          ((with-temp-buffer-window
            "*Directory*" nil
-           #'(lambda (window _value)
-               (with-selected-window window
-                 (unwind-protect
-                     (yes-or-no-p (format "Recover auto save file %s? " file-name))
-                   (when (window-live-p window)
-                     (quit-restore-window window 'kill)))))
+            (lambda (window _value)
+              (with-selected-window window
+                (unwind-protect
+                    (yes-or-no-p (format "Recover auto save file %s? " file-name))
+                  (when (window-live-p window)
+                    (quit-restore-window window 'kill)))))
            (with-current-buffer standard-output
              (let ((switches dired-listing-switches))
                (if (file-symlink-p file)
@@ -7130,16 +7130,16 @@ default directory.  However, if FULL is non-nil, they are absolute."
          (let ((this-dir-contents
                 ;; Filter out "." and ".."
                 (delq nil
-                      (mapcar #'(lambda (name)
-                                  (unless (string-match "\\`\\.\\.?\\'"
-                                                        (file-name-nondirectory name))
-                                    name))
+                       (mapcar (lambda (name)
+                                 (unless (string-match "\\`\\.\\.?\\'"
+                                                       (file-name-nondirectory name))
+                                   name))
                               (directory-files (or dir ".") full
                                                (wildcard-to-regexp nondir))))))
            (setq contents
                  (nconc
                   (if (and dir (not full))
-                      (mapcar #'(lambda (name) (concat dir name))
+                       (mapcar (lambda (name) (concat dir name))
                               this-dir-contents)
                     this-dir-contents)
                   contents)))))
index 2c73737a54174debf31f42387f15749209378402..dfbd751201fcd345ef1e44f30083dd1d64a0dd14 100644 (file)
@@ -987,8 +987,8 @@ HOST:SERVER.SCREEN).
 If DEVICE is omitted or nil, it defaults to the selected
 frame's terminal device."
   (let* ((terminal (get-device-terminal device))
-        (func #'(lambda (frame)
-                  (eq (frame-terminal frame) terminal))))
+         (func (lambda (frame)
+                 (eq (frame-terminal frame) terminal))))
     (filtered-frame-list func)))
 
 (defun framep-on-display (&optional terminal)
@@ -1165,9 +1165,9 @@ If you change this without using customize, you should use
 `frame-set-background-mode' to update existing frames;
 e.g. (mapc \\='frame-set-background-mode (frame-list))."
   :group 'faces
-  :set #'(lambda (var value)
-          (set-default var value)
-          (mapc #'frame-set-background-mode (frame-list)))
+  :set (lambda (var value)
+         (set-default var value)
+         (mapc #'frame-set-background-mode (frame-list)))
   :initialize #'custom-initialize-changed
   :type '(choice (const dark)
                 (const light)
index 233c50504bf3c77ef780cd312eb5ee1520400de9..8eb397bc82d2bf3959d7d69b1e175a8740b164fd 100644 (file)
@@ -229,11 +229,11 @@ this option, or use \"In certain situations\" and specify no text
 properties, to enable buffer local values."
                         never))
   :initialize 'custom-initialize-default
-  :set #'(lambda (variable value)
-          (set-default variable value)
-          (if (eq value 'never)
-              (help-at-pt-cancel-timer)
-            (help-at-pt-set-timer)))
+  :set (lambda (variable value)
+         (set-default variable value)
+         (if (eq value 'never)
+             (help-at-pt-cancel-timer)
+           (help-at-pt-set-timer)))
   :set-after '(help-at-pt-timer-delay)
   :require 'help-at-pt)
 
index 2b759a5a5c5ff0872652337b69199a4fb289ceb6..17fabe4f63aa293c113f02d17175886e5738d3b2 100644 (file)
@@ -1561,7 +1561,7 @@ If FRAME is omitted or nil, use the selected frame."
                  (:fontset . "Fontset")
                   (:extend . "Extend")
                  (:inherit . "Inherit")))
-        (max-width (apply #'max (mapcar #'(lambda (x) (length (cdr x)))
+         (max-width (apply #'max (mapcar (lambda (x) (length (cdr x)))
                                         attrs))))
     (dolist (a attrs)
       (let ((attr (face-attribute face (car a) frame)))
index 7c2d2eb0d755104dd2fa119761c6a73077197e81..6767d669880470b48cd0b94e7f2b6daf462c32e4 100644 (file)
@@ -354,8 +354,8 @@ The following values are possible:
 
 Setting this variable directly does not take effect;
 use either \\[customize] or the function `ido-mode'."
-  :set #'(lambda (_symbol value)
-           (ido-mode (or value 0)))
+  :set (lambda (_symbol value)
+         (ido-mode (or value 0)))
   :initialize #'custom-initialize-default
   :require 'ido
   :link '(emacs-commentary-link "ido.el")
@@ -620,9 +620,9 @@ hosts on first use of UNC path."
                 (function-item :tag "Use `NET VIEW'"
                                :value ido-unc-hosts-net-view)
                 (function :tag "Your own function"))
-  :set #'(lambda (symbol value)
-          (set symbol value)
-          (setq ido-unc-hosts-cache t)))
+  :set (lambda (symbol value)
+         (set symbol value)
+         (setq ido-unc-hosts-cache t)))
 
 (defcustom ido-downcase-unc-hosts t
   "Non-nil if UNC host names should be downcased."
index d9a48cfcf2d64de3279e4d3f3ff5e720095b1213..52e4a39ba5a431fc7223b7cec6c392c3386af624 100644 (file)
@@ -2478,8 +2478,8 @@ The arguments passed to `highlight-regexp' are the regexp from
 the last search and the face from `hi-lock-read-face-name'."
   (interactive)
   (isearch--highlight-regexp-or-lines
-   #'(lambda (regexp face lighter)
-       (highlight-regexp regexp face nil lighter))))
+   (lambda (regexp face lighter)
+     (highlight-regexp regexp face nil lighter))))
 
 (defun isearch-highlight-lines-matching-regexp ()
   "Exit Isearch mode and call `highlight-lines-matching-regexp'.
@@ -2487,8 +2487,8 @@ The arguments passed to `highlight-lines-matching-regexp' are the
 regexp from the last search and the face from `hi-lock-read-face-name'."
   (interactive)
   (isearch--highlight-regexp-or-lines
-   #'(lambda (regexp face _lighter)
-       (highlight-lines-matching-regexp regexp face))))
+   (lambda (regexp face _lighter)
+     (highlight-lines-matching-regexp regexp face))))
 
 \f
 (defun isearch-delete-char ()
index 6f9d27038495087c04b23fe288b564a6d458d4d8..d373c82feea2abc11f6fcce306eb1ecd34239e06 100644 (file)
@@ -376,12 +376,12 @@ South Indian language Malayalam is supported in this language environment."))
         (kannada . ,kannada-composable-pattern)
         (malayalam . ,malayalam-composable-pattern))))
   (map-char-table
-   #'(lambda (key val)
-       (let ((slot (assq val script-regexp-alist)))
-        (if slot
-            (set-char-table-range
-             composition-function-table key
-             (list (vector (cdr slot) 0 #'font-shape-gstring))))))
+   (lambda (key val)
+     (let ((slot (assq val script-regexp-alist)))
+       (if slot
+           (set-char-table-range
+            composition-function-table key
+            (list (vector (cdr slot) 0 #'font-shape-gstring))))))
    char-script-table))
 
 (provide 'indian)
index c699d57c15a73251b7eb1496a24521cda48be60d..93849461eae0a9e8900d14beee60059dd95b5a11 100644 (file)
     (let* ((chars (car l))
           (len (length chars))
           ;; Replace `c', `t', `v' to consonant, tone, and vowel.
-          (regexp (mapconcat #'(lambda (c)
-                                 (cond ((= c ?c) consonant)
-                                       ((= c ?t) tone)
-                                       ((= c ?v) vowel-upper-lower)
-                                       (t (string c))))
+           (regexp (mapconcat (lambda (c)
+                                (cond ((= c ?c) consonant)
+                                      ((= c ?t) tone)
+                                      ((= c ?v) vowel-upper-lower)
+                                      (t (string c))))
                              (cdr l) ""))
           ;; Element of composition-function-table.
           (elt (list (vector regexp 1 #'lao-composition-function)
index c25687574ed6b2405b2119f51f97dd288e14af1a..ba6ea938425b0eec90c0382d2d8b4a0988317e0f 100644 (file)
@@ -278,10 +278,10 @@ string."
   (list
    (apply #'vector
          (mapcar
-          #'(lambda (entry)
-               (cl-assert (char-or-string-p entry) t)
-               (format "%s%s" to-prepend
-                       (if (integerp entry) (string entry) entry)))
+           (lambda (entry)
+             (cl-assert (char-or-string-p entry) t)
+             (format "%s%s" to-prepend
+                     (if (integerp entry) (string entry) entry)))
           quail-keymap))))
 
 (defun ipa-x-sampa-underscore-implosive (input-string length)
index e6c295764b74528c63c22051ec217f64cc39ef05..c700b3348df81c57a1a4529188de7aa50b1448bd 100644 (file)
@@ -1543,34 +1543,34 @@ after the commands are processed."
               (append folders-changed (mh-index-execute-commands))))
 
       ;; Then refile messages
-      (mapc #'(lambda (folder-msg-list)
-                (let* ((dest-folder (symbol-name (car folder-msg-list)))
-                       (last (car (mh-translate-range dest-folder "last")))
-                       (msgs (cdr folder-msg-list)))
-                  (push dest-folder folders-changed)
-                  (setq redraw-needed-flag t)
-                  (apply #'mh-exec-cmd
-                         "refile" "-src" folder dest-folder
-                         (mh-coalesce-msg-list msgs))
-                  (mh-delete-scan-msgs msgs)
-                  ;; Preserve sequences in destination folder...
-                  (when mh-refile-preserves-sequences-flag
-                    (clrhash dest-map)
-                    (cl-loop
-                     for i from (1+ (or last 0))
-                     for msg in (sort (copy-sequence msgs) #'<)
-                     do (cl-loop for seq-name in (gethash msg seq-map)
-                                 do (push i (gethash seq-name dest-map))))
-                    (maphash
-                     #'(lambda (seq msgs)
-                         ;; Can't be run in the background, since the
-                         ;; current folder is changed by mark this could
-                         ;; lead to a race condition with the next refile.
-                         (apply #'mh-exec-cmd "mark"
-                                "-sequence" (symbol-name seq) dest-folder
-                                "-add" (mapcar #'(lambda (x) (format "%s" x))
-                                               (mh-coalesce-msg-list msgs))))
-                     dest-map))))
+      (mapc (lambda (folder-msg-list)
+              (let* ((dest-folder (symbol-name (car folder-msg-list)))
+                     (last (car (mh-translate-range dest-folder "last")))
+                     (msgs (cdr folder-msg-list)))
+                (push dest-folder folders-changed)
+                (setq redraw-needed-flag t)
+                (apply #'mh-exec-cmd
+                       "refile" "-src" folder dest-folder
+                       (mh-coalesce-msg-list msgs))
+                (mh-delete-scan-msgs msgs)
+                ;; Preserve sequences in destination folder...
+                (when mh-refile-preserves-sequences-flag
+                  (clrhash dest-map)
+                  (cl-loop
+                   for i from (1+ (or last 0))
+                   for msg in (sort (copy-sequence msgs) #'<)
+                   do (cl-loop for seq-name in (gethash msg seq-map)
+                               do (push i (gethash seq-name dest-map))))
+                  (maphash
+                   #'(lambda (seq msgs)
+                       ;; Can't be run in the background, since the
+                       ;; current folder is changed by mark this could
+                       ;; lead to a race condition with the next refile.
+                       (apply #'mh-exec-cmd "mark"
+                              "-sequence" (symbol-name seq) dest-folder
+                              "-add" (mapcar #'(lambda (x) (format "%s" x))
+                                             (mh-coalesce-msg-list msgs))))
+                   dest-map))))
             mh-refile-list)
       (setq mh-refile-list ())
 
@@ -1614,14 +1614,14 @@ after the commands are processed."
                      do (cl-loop for seq-name in (gethash msg seq-map)
                                  do (push i (gethash seq-name allow-map))))
             (maphash
-             #'(lambda (seq msgs)
-                 ;; Can't be run in background, since the current
-                 ;; folder is changed by mark this could lead to a
-                 ;; race condition with the next refile/allowlist.
-                 (apply #'mh-exec-cmd "mark"
-                        "-sequence" (symbol-name seq) mh-inbox
-                        "-add" (mapcar #'(lambda(x) (format "%s" x))
-                                       (mh-coalesce-msg-list msgs))))
+             (lambda (seq msgs)
+               ;; Can't be run in background, since the current
+               ;; folder is changed by mark this could lead to a
+               ;; race condition with the next refile/allowlist.
+               (apply #'mh-exec-cmd "mark"
+                      "-sequence" (symbol-name seq) mh-inbox
+                      "-add" (mapcar #'(lambda(x) (format "%s" x))
+                                     (mh-coalesce-msg-list msgs))))
              allow-map))
           (setq mh-allowlist nil)))
 
index 3d9128c15a7e92ac423e96ea4ba48666d2356ef9..0b58d7ba1f46ad7ac7a6c65c709ea46730303cde 100644 (file)
@@ -238,24 +238,24 @@ usually reads the file \"/etc/mailcap\"."
   (when (consp part-index) (setq part-index (car part-index)))
   (mh-folder-mime-action
    part-index
-   #'(lambda ()
-       (let* ((part (get-text-property (point) 'mh-data))
-              (type (mm-handle-media-type part))
-              (methods (mapcar (lambda (x) (list (cdr (assoc 'viewer x))))
-                               (mailcap-mime-info type 'all)))
-              (def (caar methods))
-              (prompt (format-prompt "Viewer" def))
-              (method (completing-read prompt methods nil nil nil nil def))
-              (folder mh-show-folder-buffer)
-              (buffer-read-only nil))
-         (when (string-match "^[^% \t]+$" method)
-           (setq method (concat method " %s")))
-         (mh-flet
-          ((mm-handle-set-external-undisplayer
-            (handle function)
-            (mh-handle-set-external-undisplayer folder handle function)))
-          (unwind-protect (mm-display-external part method)
-            (set-buffer-modified-p nil)))))
+   (lambda ()
+     (let* ((part (get-text-property (point) 'mh-data))
+            (type (mm-handle-media-type part))
+            (methods (mapcar (lambda (x) (list (cdr (assoc 'viewer x))))
+                             (mailcap-mime-info type 'all)))
+            (def (caar methods))
+            (prompt (format-prompt "Viewer" def))
+            (method (completing-read prompt methods nil nil nil nil def))
+            (folder mh-show-folder-buffer)
+            (buffer-read-only nil))
+       (when (string-match "^[^% \t]+$" method)
+         (setq method (concat method " %s")))
+       (mh-flet
+        ((mm-handle-set-external-undisplayer
+          (handle function)
+          (mh-handle-set-external-undisplayer folder handle function)))
+        (unwind-protect (mm-display-external part method)
+          (set-buffer-modified-p nil)))))
    nil))
 
 ;;;###mh-autoload
index ab8af40628af9be6201f096216d4c03d3f7ab20c..2d1dcd2b6862475f630f2f2b9a354cef20edddb0 100644 (file)
@@ -1209,8 +1209,8 @@ V%s 0 /%s-latin1 /%s Latin1Encoding put\n"
          (ps-output-prologue (format "ETOP%d %d %d put\n" i (car font) index))
          (setq index (1+ index))))
       (ps-output-prologue (format "/VTOP%d [%s] def\n" i
-                                 (mapconcat #'(lambda (x)
-                                                (format "F%02X" (cdr x)))
+                                  (mapconcat (lambda (x)
+                                               (format "F%02X" (cdr x)))
                                             font-list " ")))))
 
   ;; Redefine fonts f0, f1, f2, f3, h0, h1, H0.
index b1d03fda1d483c519be6d11325d89e3a71ec7075..0fc955467943bc59968e795127e7ca66ca227c3d 100644 (file)
@@ -3855,7 +3855,7 @@ It can be retrieved with `(ps-get ALIST-SYM KEY)'."
 
 (defun ps-color-scale (color)
   ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
-  (mapcar #'(lambda (value) (/ value ps-print-color-scale))
+  (mapcar (lambda (value) (/ value ps-print-color-scale))
          (color-values color)))
 
 
@@ -4747,11 +4747,11 @@ page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
 (defun ps-background-pages (page-list func)
   (if page-list
       (mapcar
-       #'(lambda (pages)
-          (let ((start (if (consp pages) (car pages) pages))
-                (end   (if (consp pages) (cdr pages) pages)))
-            (and (integerp start) (integerp end) (<= start end)
-                 (add-to-list 'ps-background-pages (vector start end func)))))
+       (lambda (pages)
+         (let ((start (if (consp pages) (car pages) pages))
+               (end   (if (consp pages) (cdr pages) pages)))
+           (and (integerp start) (integerp end) (<= start end)
+                (add-to-list 'ps-background-pages (vector start end func)))))
        page-list)
     (setq ps-background-all-pages (cons func ps-background-all-pages))))
 
@@ -4789,76 +4789,76 @@ page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
 
 (defun ps-background-text ()
   (mapcar
-   #'(lambda (text)
-       (setq ps-background-text-count (1+ ps-background-text-count))
-       (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count))
-       (ps-output-string (nth 0 text)) ; text
-       (ps-output
-       "\n"
-       (ps-float-format (nth 4 text) 200.0) ; font size
-       (format "/%s " (or (nth 3 text) "Times-Roman")) ; font name
-       (ps-float-format (nth 6 text)
-                        "PrintHeight PrintPageWidth atan") ; rotation
-       (ps-float-format (nth 5 text) 0.85) ; gray
-       (ps-float-format (nth 1 text) "0") ; x position
-       (ps-float-format (nth 2 text) "0") ; y position
-       "\nShowBackText}def\n")
-       (ps-background-pages (nthcdr 7 text) ; page list
-                           (format "ShowBackText-%d\n"
-                                   ps-background-text-count)))
+   (lambda (text)
+     (setq ps-background-text-count (1+ ps-background-text-count))
+     (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count))
+     (ps-output-string (nth 0 text))   ; text
+     (ps-output
+      "\n"
+      (ps-float-format (nth 4 text) 200.0) ; font size
+      (format "/%s " (or (nth 3 text) "Times-Roman")) ; font name
+      (ps-float-format (nth 6 text)
+                       "PrintHeight PrintPageWidth atan") ; rotation
+      (ps-float-format (nth 5 text) 0.85) ; gray
+      (ps-float-format (nth 1 text) "0") ; x position
+      (ps-float-format (nth 2 text) "0") ; y position
+      "\nShowBackText}def\n")
+     (ps-background-pages (nthcdr 7 text) ; page list
+                          (format "ShowBackText-%d\n"
+                                  ps-background-text-count)))
    ps-print-background-text))
 
 
 (defun ps-background-image ()
   (mapcar
-   #'(lambda (image)
-       (let ((image-file (expand-file-name (nth 0 image))))
-        (when (file-readable-p image-file)
-          (setq ps-background-image-count (1+ ps-background-image-count))
-          (ps-output
-           (format "/ShowBackImage-%d{\n--back-- "
-                   ps-background-image-count)
-           (ps-float-format (nth 5 image) 0.0) ; rotation
-           (ps-float-format (nth 3 image) 1.0) ; x scale
-           (ps-float-format (nth 4 image) 1.0) ; y scale
-           (ps-float-format (nth 1 image) ; x position
-                            "PrintPageWidth 2 div")
-           (ps-float-format (nth 2 image) ; y position
-                            "PrintHeight 2 div BottomMargin add")
-           "\nBeginBackImage\n")
-          (ps-insert-file image-file)
-          ;; coordinate adjustment to center image
-          ;; around x and y position
-          (let ((box (ps-get-boundingbox)))
-            (with-current-buffer ps-spool-buffer
-              (save-excursion
-                (if (re-search-backward "^--back--" nil t)
-                    (replace-match
-                     (format "%s %s"
-                             (ps-float-format
-                              (- (+ (/ (- (aref box 2) (aref box 0)) 2.0)
-                                    (aref box 0))))
-                             (ps-float-format
-                              (- (+ (/ (- (aref box 3) (aref box 1)) 2.0)
-                                    (aref box 1)))))
-                     t)))))
-          (ps-output "\nEndBackImage}def\n")
-          (ps-background-pages (nthcdr 6 image) ; page list
-                               (format "ShowBackImage-%d\n"
-                                       ps-background-image-count)))))
+   (lambda (image)
+     (let ((image-file (expand-file-name (nth 0 image))))
+       (when (file-readable-p image-file)
+         (setq ps-background-image-count (1+ ps-background-image-count))
+         (ps-output
+          (format "/ShowBackImage-%d{\n--back-- "
+                  ps-background-image-count)
+          (ps-float-format (nth 5 image) 0.0) ; rotation
+          (ps-float-format (nth 3 image) 1.0) ; x scale
+          (ps-float-format (nth 4 image) 1.0) ; y scale
+          (ps-float-format (nth 1 image) ; x position
+                           "PrintPageWidth 2 div")
+          (ps-float-format (nth 2 image) ; y position
+                           "PrintHeight 2 div BottomMargin add")
+          "\nBeginBackImage\n")
+         (ps-insert-file image-file)
+         ;; coordinate adjustment to center image
+         ;; around x and y position
+         (let ((box (ps-get-boundingbox)))
+           (with-current-buffer ps-spool-buffer
+             (save-excursion
+               (if (re-search-backward "^--back--" nil t)
+                   (replace-match
+                    (format "%s %s"
+                            (ps-float-format
+                             (- (+ (/ (- (aref box 2) (aref box 0)) 2.0)
+                                   (aref box 0))))
+                            (ps-float-format
+                             (- (+ (/ (- (aref box 3) (aref box 1)) 2.0)
+                                   (aref box 1)))))
+                    t)))))
+         (ps-output "\nEndBackImage}def\n")
+         (ps-background-pages (nthcdr 6 image) ; page list
+                              (format "ShowBackImage-%d\n"
+                                      ps-background-image-count)))))
    ps-print-background-image))
 
 
 (defun ps-background (page-number)
   (let (has-local-background)
-    (mapc #'(lambda (range)
-             (and (<= (aref range 0) page-number)
-                  (<= page-number (aref range 1))
-                  (if has-local-background
-                      (ps-output (aref range 2))
-                    (setq has-local-background t)
-                    (ps-output "/printLocalBackground{\n"
-                               (aref range 2)))))
+    (mapc (lambda (range)
+            (and (<= (aref range 0) page-number)
+                 (<= page-number (aref range 1))
+                 (if has-local-background
+                     (ps-output (aref range 2))
+                   (setq has-local-background t)
+                   (ps-output "/printLocalBackground{\n"
+                              (aref range 2)))))
          ps-background-pages)
     (and has-local-background (ps-output "}def\n"))))
 
@@ -5697,8 +5697,8 @@ XSTART YSTART are the relative position for the first page in a sheet.")
                  (> (car page) 0)
                  (<= (car page) (cdr page))
                  (setq new (cons page new))))))
-    (setq ps-selected-pages      (sort new #'(lambda (one other)
-                                              (< (car one) (car other))))
+    (setq ps-selected-pages      (sort new (lambda (one other)
+                                             (< (car one) (car other))))
          ps-last-selected-pages ps-selected-pages
          ps-first-page          nil
          ps-last-page           nil))
@@ -5782,8 +5782,8 @@ XSTART YSTART are the relative position for the first page in a sheet.")
                               "unspecified-fg"
                               0.0)
        ps-foreground-list    (mapcar
-                              #'(lambda (arg)
-                                  (ps-rgb-color arg "unspecified-fg" 0.0))
+                               (lambda (arg)
+                                 (ps-rgb-color arg "unspecified-fg" 0.0))
                               (append (and (not (member ps-print-color-p
                                                         '(nil black-white)))
                                            ps-fg-list)
@@ -6012,9 +6012,9 @@ XSTART YSTART are the relative position for the first page in a sheet.")
     (if (and (boundp 'ucs-mule-8859-to-mule-unicode)
           (char-table-p ucs-mule-8859-to-mule-unicode))
        (map-char-table
-        #'(lambda (k v)
-            (if (and v (eq (char-charset v) 'latin-iso8859-1) (/= k v))
-                (aset tbl k v)))
+         (lambda (k v)
+           (if (and v (eq (char-charset v) 'latin-iso8859-1) (/= k v))
+               (aset tbl k v)))
         ucs-mule-8859-to-mule-unicode))
     tbl)
   "Translation table for PostScript printing.
index 57cbaf0debb29b34cd9836a48a03f1b20ff364ba..6b5a47c66fdaf2d7e81ddf1a8a0810dde1958980 100644 (file)
@@ -674,55 +674,55 @@ Return nil if file NAME is not one of the ten more recent."
   "Sort the list of menu elements L in ascending order.
 The MENU-ITEM part of each menu element is compared."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-string-lessp
-             (recentf-menu-element-item e1)
-             (recentf-menu-element-item e2)))))
+        (lambda (e1 e2)
+          (recentf-string-lessp
+           (recentf-menu-element-item e1)
+           (recentf-menu-element-item e2)))))
 
 (defsubst recentf-sort-descending (l)
   "Sort the list of menu elements L in descending order.
 The MENU-ITEM part of each menu element is compared."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-string-lessp
-             (recentf-menu-element-item e2)
-             (recentf-menu-element-item e1)))))
+        (lambda (e1 e2)
+          (recentf-string-lessp
+           (recentf-menu-element-item e2)
+           (recentf-menu-element-item e1)))))
 
 (defsubst recentf-sort-basenames-ascending (l)
   "Sort the list of menu elements L in ascending order.
 Only filenames sans directory are compared."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-string-lessp
-             (file-name-nondirectory (recentf-menu-element-value e1))
-             (file-name-nondirectory (recentf-menu-element-value e2))))))
+        (lambda (e1 e2)
+          (recentf-string-lessp
+           (file-name-nondirectory (recentf-menu-element-value e1))
+           (file-name-nondirectory (recentf-menu-element-value e2))))))
 
 (defsubst recentf-sort-basenames-descending (l)
   "Sort the list of menu elements L in descending order.
 Only filenames sans directory are compared."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-string-lessp
-             (file-name-nondirectory (recentf-menu-element-value e2))
-             (file-name-nondirectory (recentf-menu-element-value e1))))))
+        (lambda (e1 e2)
+          (recentf-string-lessp
+           (file-name-nondirectory (recentf-menu-element-value e2))
+           (file-name-nondirectory (recentf-menu-element-value e1))))))
 
 (defsubst recentf-sort-directories-ascending (l)
   "Sort the list of menu elements L in ascending order.
 Compares directories then filenames to order the list."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-directory-compare
-             (recentf-menu-element-value e1)
-             (recentf-menu-element-value e2)))))
+        (lambda (e1 e2)
+          (recentf-directory-compare
+           (recentf-menu-element-value e1)
+           (recentf-menu-element-value e2)))))
 
 (defsubst recentf-sort-directories-descending (l)
   "Sort the list of menu elements L in descending order.
 Compares directories then filenames to order the list."
   (sort (copy-sequence l)
-        #'(lambda (e1 e2)
-            (recentf-directory-compare
-             (recentf-menu-element-value e2)
-             (recentf-menu-element-value e1)))))
+        (lambda (e1 e2)
+          (recentf-directory-compare
+           (recentf-menu-element-value e2)
+           (recentf-menu-element-value e1)))))
 
 (defun recentf-show-basenames (l &optional no-dir)
   "Filter the list of menu elements L to show filenames sans directory.
@@ -1382,5 +1382,5 @@ buffers you switch to a lot, you can say something like the following:
 (provide 'recentf)
 
 (run-hooks 'recentf-load-hook)
-\f
+
 ;;; recentf.el ends here
index 84ec042f4550b1c29347ec30bb4b7888fe7cba3e..5287be2c5244162571be46b2e7630d792e6ba658 100644 (file)
@@ -2263,11 +2263,11 @@ See also `multi-occur'."
 
 (defun occur-engine-add-prefix (lines &optional prefix-face)
   (mapcar
-   #'(lambda (line)
-       (concat (if prefix-face
-                  (propertize "       :" 'font-lock-face prefix-face)
-                "       :")
-              line "\n"))
+   (lambda (line)
+     (concat (if prefix-face
+                 (propertize "       :" 'font-lock-face prefix-face)
+               "       :")
+             line "\n"))
    lines))
 
 (defun occur-accumulate-lines (count &optional keep-props pt)
index 15e171c13f9848444292752b941ec368cb489393..3c9f961f6db2ff5909736a9e74a4b782f4926daf 100644 (file)
@@ -440,13 +440,13 @@ two markers or an overlay.  Otherwise, it is nil."
              (setq type 'C_STRING))
             (t
              (let (non-latin-1 non-unicode eight-bit)
-               (mapc #'(lambda (x)
-                         (if (>= x #x100)
-                             (if (< x #x110000)
-                                 (setq non-latin-1 t)
-                               (if (< x #x3FFF80)
-                                   (setq non-unicode t)
-                                 (setq eight-bit t)))))
+                (mapc (lambda (x)
+                        (if (>= x #x100)
+                            (if (< x #x110000)
+                                (setq non-latin-1 t)
+                              (if (< x #x3FFF80)
+                                  (setq non-unicode t)
+                                (setq eight-bit t)))))
                      str)
                (setq type (if (or non-unicode
                                   (and
index 6359a761994c72397bbc09164b7f149e85eb471b..5306a5477672bd16c650a9d65900e392bb351404 100644 (file)
 
 (defcustom server-use-tcp nil
   "If non-nil, use TCP sockets instead of local sockets."
-  :set #'(lambda (sym val)
-           (unless (featurep 'make-network-process '(:family local))
-             (setq val t)
-             (unless load-in-progress
-               (message "Local sockets unsupported, using TCP sockets")))
-           (set-default sym val))
+  :set (lambda (sym val)
+         (unless (featurep 'make-network-process '(:family local))
+           (setq val t)
+           (unless load-in-progress
+             (message "Local sockets unsupported, using TCP sockets")))
+         (set-default sym val))
   :type 'boolean
   :version "22.1")
 
index 51843eab03255215f84ad2abd694583b87c56d4e..5e2d254881bfeb7c0243009ea6f1e131a15a42eb 100644 (file)
@@ -3554,7 +3554,7 @@ With prefix, sorts in REVERSE order."
        (push (cons (buffer-substring-no-properties (point) end)
                    (+ minrow x))
              keys))
-      (setq keys (sort keys #'(lambda (x y) (string< (car x) (car y)))))
+      (setq keys (sort keys (lambda (x y) (string< (car x) (car y)))))
       ;;Extract the lines in reverse sorted order
       (or reverse
          (setq keys (nreverse keys)))
index d6767ed5098f8415bbd496116f2729004a713696..09259805415c9d9ca14174d753c6b1628e0637ec 100644 (file)
@@ -540,8 +540,8 @@ Use \\[untabify] to convert tabs to spaces before sorting."
            (narrow-to-region beg1 end1)
            (goto-char beg1)
            (sort-subr reverse 'forward-line 'end-of-line
-                      #'(lambda () (move-to-column col-start) nil)
-                      #'(lambda () (move-to-column col-end) nil))))))))
+                       (lambda () (move-to-column col-start) nil)
+                       (lambda () (move-to-column col-end) nil))))))))
 
 ;;;###autoload
 (defun reverse-region (beg end)
index 1a3811a37c2693e1820e3f954cd5333ee8c3337c..67a417c1161034960f6a84c19235e1811850070d 100644 (file)
@@ -867,10 +867,10 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
   ;; For Darwin nothing except UTF-8 makes sense.
   (when (eq system-type 'darwin)
       (add-hook 'before-init-hook
-                #'(lambda ()
-                    (setq locale-coding-system 'utf-8-unix)
-                    (setq default-process-coding-system
-                          '(utf-8-unix . utf-8-unix)))))
+                (lambda ()
+                  (setq locale-coding-system 'utf-8-unix)
+                  (setq default-process-coding-system
+                        '(utf-8-unix . utf-8-unix)))))
 
   ;; Mac OS X Lion introduces PressAndHold, which is unsupported by this port.
   ;; See this thread for more details:
index d40a628b994978611a16d776a83059296ca47a0a..8691f03f86de8da7219628e48e1ac5e2b8e00699 100644 (file)
@@ -214,8 +214,8 @@ Give the image the specified properties PROPS."
 See also the option `widget-image-conversion'."
   (delq nil
         (mapcar
-         #'(lambda (fmt)
-             (and (image-type-available-p (car fmt)) fmt))
+         (lambda (fmt)
+           (and (image-type-available-p (car fmt)) fmt))
          widget-image-conversion)))
 
 ;; Buffer local cache of theme data.
index 017409d6a420c851d78525e8d00819d9eff8186b..5a482c5253a1d689a0109ca15b31c1ed1e6613cf 100644 (file)
@@ -1687,32 +1687,32 @@ cleaning up these problems."
                        (or whitespace-active-style whitespace-style)))
            (bogus-list
             (mapcar
-             #'(lambda (option)
-                 (when force
-                   (push (car option) style))
-                 (goto-char rstart)
-                 (let ((regexp
-                        (cond
-                         ((eq (car option) 'indentation)
-                          (whitespace-indentation-regexp))
-                         ((eq (car option) 'indentation::tab)
-                          (whitespace-indentation-regexp 'tab))
-                         ((eq (car option) 'indentation::space)
-                          (whitespace-indentation-regexp 'space))
-                         ((eq (car option) 'space-after-tab)
-                          (whitespace-space-after-tab-regexp))
-                         ((eq (car option) 'space-after-tab::tab)
-                          (whitespace-space-after-tab-regexp 'tab))
-                         ((eq (car option) 'space-after-tab::space)
-                          (whitespace-space-after-tab-regexp 'space))
-                         ((eq (car option) 'missing-newline-at-eof)
-                          "[^\n]\\'")
-                         (t
-                          (cdr option)))))
-                   (when (re-search-forward regexp rend t)
-                     (unless has-bogus
-                       (setq has-bogus (memq (car option) style)))
-                     t)))
+             (lambda (option)
+               (when force
+                 (push (car option) style))
+               (goto-char rstart)
+               (let ((regexp
+                      (cond
+                       ((eq (car option) 'indentation)
+                        (whitespace-indentation-regexp))
+                       ((eq (car option) 'indentation::tab)
+                        (whitespace-indentation-regexp 'tab))
+                       ((eq (car option) 'indentation::space)
+                        (whitespace-indentation-regexp 'space))
+                       ((eq (car option) 'space-after-tab)
+                        (whitespace-space-after-tab-regexp))
+                       ((eq (car option) 'space-after-tab::tab)
+                        (whitespace-space-after-tab-regexp 'tab))
+                       ((eq (car option) 'space-after-tab::space)
+                        (whitespace-space-after-tab-regexp 'space))
+                       ((eq (car option) 'missing-newline-at-eof)
+                        "[^\n]\\'")
+                       (t
+                        (cdr option)))))
+                 (when (re-search-forward regexp rend t)
+                   (unless has-bogus
+                     (setq has-bogus (memq (car option) style)))
+                   t)))
              whitespace-report-list)))
       (when (pcase report-if-bogus ('nil t) ('never nil) (_ has-bogus))
         (whitespace-kill-buffer whitespace-report-buffer-name)
@@ -2463,5 +2463,4 @@ It should be added buffer-locally to `write-file-functions'."
                         "use `with-eval-after-load' instead." "28.1")
 (run-hooks 'whitespace-load-hook)
 
-
 ;;; whitespace.el ends here