summaryrefslogtreecommitdiff
path: root/orderless.el
diff options
context:
space:
mode:
authorOmar Antolín <omar.antolin@gmail.com>2020-05-04 02:06:21 -0500
committerOmar Antolín <omar.antolin@gmail.com>2020-05-04 02:06:21 -0500
commit21e9f87579bcc7ccaaf07a1a0150c8c06f3bf3fa (patch)
treed4e084987e444b7edb5d6adb3cbd5ff7c54720f5 /orderless.el
parent5c2f44d90130c5e03ecd1bf290b7287745c4f0fd (diff)
Typo: escapeable --> escapable
Diffstat (limited to 'orderless.el')
-rw-r--r--orderless.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/orderless.el b/orderless.el
index 0255a1f..d57cad5 100644
--- a/orderless.el
+++ b/orderless.el
@@ -97,7 +97,7 @@ or a function of a single string argument."
:type '(choice (const :tag "Spaces" " +")
(const :tag "Spaces, hyphen or slash" " +\\|[-/]")
(const :tag "Escapable space"
- orderless-escapeable-split-on-space)
+ orderless-escapable-split-on-space)
(const :tag "Quotable spaces" split-string-and-unquote)
(regexp :tag "Custom regexp")
(function : tag "Custom function"))
@@ -327,7 +327,7 @@ converted to a list of regexps according to the value of
;;; Compiling patterns to lists of regexps
-(defun orderless-escapeable-split-on-space (string)
+(defun orderless-escapable-split-on-space (string)
"Split STRING on spaces, which can be escaped with backslash."
(mapcar
(lambda (piece) (replace-regexp-in-string (string 0) " " piece))