From 698ff554ac2699ec48fefc85a1307cbc4a183b0d Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 26 Jun 2019 10:03:48 -0400 Subject: * lisp/calc/calc-ext.el (math-scalarp): Fix typo --- lisp/eshell/esh-util.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'lisp/eshell/esh-util.el') diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index fe8eb35d366..96e95365f5f 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el @@ -306,8 +306,7 @@ Prepend remote identification of `default-directory', if any." (setq m (cdr m)))) l) (define-obsolete-function-alias - 'eshell-uniqify-list - 'eshell-uniquify-list "27.1") + 'eshell-uniqify-list #'eshell-uniquify-list "27.1") (defun eshell-stringify (object) "Convert OBJECT into a string value." @@ -326,11 +325,11 @@ Prepend remote identification of `default-directory', if any." (defsubst eshell-stringify-list (args) "Convert each element of ARGS into a string value." - (mapcar 'eshell-stringify args)) + (mapcar #'eshell-stringify args)) (defsubst eshell-flatten-and-stringify (&rest args) "Flatten and stringify all of the ARGS into a single string." - (mapconcat 'eshell-stringify (flatten-tree args) " ")) + (mapconcat #'eshell-stringify (flatten-tree args) " ")) (defsubst eshell-directory-files (regexp &optional directory) "Return a list of files in the given DIRECTORY matching REGEXP." @@ -526,7 +525,7 @@ Unless optional argument INPLACE is non-nil, return a new string." (defsubst eshell-copy-environment () "Return an unrelated copy of `process-environment'." - (mapcar 'concat process-environment)) + (mapcar #'concat process-environment)) (defun eshell-subgroups (groupsym) "Return all of the subgroups of GROUPSYM." -- cgit v1.2.3