mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
(nil-blank-string): Doc fix.
This commit is contained in:
parent
4990598e2c
commit
3ced278069
@ -974,12 +974,11 @@ Show wall-clock time elapsed during execution of COMMAND.")
|
||||
(if eshell-diff-window-config
|
||||
(set-window-configuration eshell-diff-window-config)))
|
||||
|
||||
(defun nil-blank-string ( string )
|
||||
"if a string is all blanks return nil, if there are non-blank characters
|
||||
return the string"
|
||||
(defun nil-blank-string (string)
|
||||
"Return STRING, or nil if STRING contains only non-blank characters."
|
||||
(cond
|
||||
((string-match "[^[:blank:]]" string ) string)
|
||||
(nil)))
|
||||
((string-match "[^[:blank:]]" string) string)
|
||||
(nil)))
|
||||
|
||||
(defun eshell/diff (&rest args)
|
||||
"Alias \"diff\" to call Emacs `diff' function."
|
||||
|
Loading…
Reference in New Issue
Block a user