diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-05 11:22:42 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-05 11:22:42 +0100 |
| commit | 3b3b1fe6f616b9b71fe69fb0da3bda55098009e7 (patch) | |
| tree | bf7c968bdf2ae5335b314e4bef01fdc6bdb29545 /compat-25.el | |
| parent | 1399e7e98a50752d40d7169b9cfaf95ab80cfc55 (diff) | |
Add string-split
Diffstat (limited to 'compat-25.el')
| -rw-r--r-- | compat-25.el | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/compat-25.el b/compat-25.el index 323f714..afc82b6 100644 --- a/compat-25.el +++ b/compat-25.el @@ -57,13 +57,7 @@ usage: (bool-vector &rest OBJECTS)" ;;;; Defined in editfns.c -(compat-defun format-message (string &rest objects) ;; <OK> - "Format a string out of a format-string and arguments. -The first argument is a format control string. -The other arguments are substituted into it to make the result, a string. - -This implementation is equivalent to `format'." - (apply #'format string objects)) +(compat-defalias format-message format) ;; <OK> ;;;; Defined in fileio.c @@ -249,12 +243,7 @@ threading." ;;;; Defined in byte-run.el -(compat-defun function-put (func prop value) ;; <OK> - "Set FUNCTION's property PROP to VALUE. -The namespace for PROP is shared with symbols. -So far, FUNCTION can only be a symbol, not a lambda expression." - :version "24.4" - (put func prop value)) +(compat-defalias function-put put) ;; <OK> ;;;; Defined in files.el |
