diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-05-17 18:45:17 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-05-17 18:45:17 +0200 |
| commit | d59333f9a19daf153cb22f691e156420b50f8efa (patch) | |
| tree | 5c60bb833cced22da298ce9d90970ca59088f491 | |
| parent | ec06bc858fc40a377dc213b5cc344d029a836144 (diff) | |
value<: Update error message
| -rw-r--r-- | compat-30.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat-30.el b/compat-30.el index e0a8def..6c5db9e 100644 --- a/compat-30.el +++ b/compat-30.el @@ -285,7 +285,7 @@ Other types are considered unordered and the return value will be ‘nil’." ;; Other values of equal type are considered unordered (return value nil). ((eq (type-of a) (type-of b)) nil) ;; Different types. - (t (error "value< unsupported type: %S %S" a b)))) + (t (error "value< type mismatch: %S %S" a b)))) (compat-defun sort (seq &optional lessp &rest rest) ;; <compat-tests:sort> "Sort function with support for keyword arguments. |
