diff options
| author | Stefan Monnier | 2019-06-26 10:03:48 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-06-26 10:03:48 -0400 |
| commit | 698ff554ac2699ec48fefc85a1307cbc4a183b0d (patch) | |
| tree | a7b7592f7973f81cad4410366d313e790616907e /lisp/eshell | |
| parent | 9233865b7005831e63755eb84ae7da060f878a55 (diff) | |
| download | emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.tar.gz emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.zip | |
* lisp/calc/calc-ext.el (math-scalarp): Fix typo
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-util.el | 9 |
1 files changed, 4 insertions, 5 deletions
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." | |||
| 306 | (setq m (cdr m)))) | 306 | (setq m (cdr m)))) |
| 307 | l) | 307 | l) |
| 308 | (define-obsolete-function-alias | 308 | (define-obsolete-function-alias |
| 309 | 'eshell-uniqify-list | 309 | 'eshell-uniqify-list #'eshell-uniquify-list "27.1") |
| 310 | 'eshell-uniquify-list "27.1") | ||
| 311 | 310 | ||
| 312 | (defun eshell-stringify (object) | 311 | (defun eshell-stringify (object) |
| 313 | "Convert OBJECT into a string value." | 312 | "Convert OBJECT into a string value." |
| @@ -326,11 +325,11 @@ Prepend remote identification of `default-directory', if any." | |||
| 326 | 325 | ||
| 327 | (defsubst eshell-stringify-list (args) | 326 | (defsubst eshell-stringify-list (args) |
| 328 | "Convert each element of ARGS into a string value." | 327 | "Convert each element of ARGS into a string value." |
| 329 | (mapcar 'eshell-stringify args)) | 328 | (mapcar #'eshell-stringify args)) |
| 330 | 329 | ||
| 331 | (defsubst eshell-flatten-and-stringify (&rest args) | 330 | (defsubst eshell-flatten-and-stringify (&rest args) |
| 332 | "Flatten and stringify all of the ARGS into a single string." | 331 | "Flatten and stringify all of the ARGS into a single string." |
| 333 | (mapconcat 'eshell-stringify (flatten-tree args) " ")) | 332 | (mapconcat #'eshell-stringify (flatten-tree args) " ")) |
| 334 | 333 | ||
| 335 | (defsubst eshell-directory-files (regexp &optional directory) | 334 | (defsubst eshell-directory-files (regexp &optional directory) |
| 336 | "Return a list of files in the given DIRECTORY matching REGEXP." | 335 | "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." | |||
| 526 | 525 | ||
| 527 | (defsubst eshell-copy-environment () | 526 | (defsubst eshell-copy-environment () |
| 528 | "Return an unrelated copy of `process-environment'." | 527 | "Return an unrelated copy of `process-environment'." |
| 529 | (mapcar 'concat process-environment)) | 528 | (mapcar #'concat process-environment)) |
| 530 | 529 | ||
| 531 | (defun eshell-subgroups (groupsym) | 530 | (defun eshell-subgroups (groupsym) |
| 532 | "Return all of the subgroups of GROUPSYM." | 531 | "Return all of the subgroups of GROUPSYM." |