diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-01 16:24:12 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-01 16:26:44 +0200 |
commit | 4a538c4861370d629920b66a7cdcbb78ecb13830 (patch) | |
tree | 6a62e7ed5c1def94ae207defff5f2eab280e2769 /lisp/progmodes/cc-styles.el | |
parent | 8129998deb54c3621dd715c79694725c74630e67 (diff) | |
download | emacs-4a538c4861370d629920b66a7cdcbb78ecb13830.tar.gz |
Remove redundant #' before lambda in progmodes/*.el
* lisp/progmodes/cc-styles.el (c-set-offset):
* lisp/progmodes/ebnf-yac.el (ebnf-yac-token-table):
* lisp/progmodes/ebnf2ps.el (ebnf-format-float, ebnf-map-name):
* lisp/progmodes/grep.el (lgrep, rgrep-default-command):
* lisp/progmodes/inf-lisp.el:
* lisp/progmodes/octave.el (octave-lookfor):
* lisp/progmodes/python.el (python-pdbtrack-tracking-finish): Remove
redundant #' before lambda.
Diffstat (limited to 'lisp/progmodes/cc-styles.el')
-rw-r--r-- | lisp/progmodes/cc-styles.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-styles.el b/lisp/progmodes/cc-styles.el index aec259f1b38..29cbe54c3bd 100644 --- a/lisp/progmodes/cc-styles.el +++ b/lisp/progmodes/cc-styles.el @@ -476,8 +476,8 @@ and exists only for compatibility reasons." (if current-prefix-arg " or add" "") ": ") (mapcar - #'(lambda (langelem) - (cons (format "%s" (car langelem)) nil)) + (lambda (langelem) + (cons (format "%s" (car langelem)) nil)) (get 'c-offsets-alist 'c-stylevar-fallback)) nil (not current-prefix-arg) ;; initial contents tries to be the last element |