summaryrefslogtreecommitdiff
path: root/lisp/files-x.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-04-10 12:08:36 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2021-04-10 12:08:36 -0400
commit3c051db646b34995c144327ed462a92ffbb41f86 (patch)
tree26dd083f1f8b41eca5b0924edd359426b8888cdc /lisp/files-x.el
parent649e5c26edc89373778016898652faaaf9a7275c (diff)
downloademacs-3c051db646b34995c144327ed462a92ffbb41f86.tar.gz
* lisp/files-x.el: Use lexical-binding
Diffstat (limited to 'lisp/files-x.el')
-rw-r--r--lisp/files-x.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files-x.el b/lisp/files-x.el
index 23e4562f4b1..9e1954256a6 100644
--- a/lisp/files-x.el
+++ b/lisp/files-x.el
@@ -1,4 +1,4 @@
-;;; files-x.el --- extended file handling commands
+;;; files-x.el --- extended file handling commands -*- lexical-binding: t; -*-
;; Copyright (C) 2009-2021 Free Software Foundation, Inc.
@@ -602,7 +602,7 @@ PROFILES is a list of connection profiles (symbols).")
"Normalize plist CRITERIA according to properties.
Return a reordered plist."
(apply
- 'append
+ #'append
(mapcar
(lambda (property)
(when (and (plist-member criteria property) (plist-get criteria property))