diff options
author | Stephen Leake <stephen_leake@stephe-leake.org> | 2019-09-10 03:37:51 -0700 |
---|---|---|
committer | Stephen Leake <stephen_leake@stephe-leake.org> | 2019-09-10 03:37:51 -0700 |
commit | 3d442312889ef2d14c07282d0aff6199d00cc165 (patch) | |
tree | 74034ca2dded6ed233d0701b4cb5c10a0b5e9034 /lisp/emacs-lisp/subr-x.el | |
parent | ac1a2e260e8ece34500b5879f766b4e54ee57b94 (diff) | |
parent | 74e9799bd89484b8d15bdd6597c68fc00d07e7f7 (diff) | |
download | emacs-3d442312889ef2d14c07282d0aff6199d00cc165.tar.gz emacs-3d442312889ef2d14c07282d0aff6199d00cc165.tar.bz2 emacs-3d442312889ef2d14c07282d0aff6199d00cc165.zip |
Merge commit '74e9799bd89484b8d15bdd6597c68fc00d07e7f7'
Diffstat (limited to 'lisp/emacs-lisp/subr-x.el')
-rw-r--r-- | lisp/emacs-lisp/subr-x.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index f76409c4de8..bb2bf3dd5fa 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -236,7 +236,9 @@ TRIM-LEFT and TRIM-RIGHT default to \"[ \\t\\n\\r]+\"." (string-trim-left (string-trim-right string trim-right) trim-left)) (defsubst string-blank-p (string) - "Check whether STRING is either empty or only whitespace." + "Check whether STRING is either empty or only whitespace. +The following characters count as whitespace here: space, tab, newline and +carriage return." (string-match-p "\\`[ \t\n\r]*\\'" string)) (defsubst string-remove-prefix (prefix string) |