branch: externals/orderless
commit 21e9f87579bcc7ccaaf07a1a0150c8c06f3bf3fa
Author: Omar Antolín <[email protected]>
Commit: Omar Antolín <[email protected]>

    Typo: escapeable --> escapable
---
 orderless.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/orderless.el b/orderless.el
index 0255a1faca..d57cad56b4 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))

Reply via email to