* lisp/emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
for `reverse'.
This commit is contained in:
parent
a24225d513
commit
911ba4d915
2 changed files with 6 additions and 3 deletions
|
@ -159,9 +159,7 @@ to bind a single value, BINDINGS can just be a plain tuple."
|
|||
"Join all STRINGS using SEPARATOR."
|
||||
(mapconcat 'identity strings separator))
|
||||
|
||||
(defsubst string-reverse (str)
|
||||
"Reverse the string STR."
|
||||
(reverse str))
|
||||
(define-obsolete-function-alias 'string-reverse 'reverse "24.5")
|
||||
|
||||
(defsubst string-trim-left (string)
|
||||
"Remove leading whitespace from STRING."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue