branch: elpa/flx
commit 222f60d28ea03433ded06f4783c6e0e12eebb3b5
Merge: a792c2c5f1 b1702e2aa1
Author: Le Wang <l26w...@gmail.com>
Commit: Le Wang <l26w...@gmail.com>

    Merge pull request #18 from jschaf/master
    
    Add colon to non-word characters
---
 flx.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flx.el b/flx.el
index 5f2e64ede8..e2aad55c34 100644
--- a/flx.el
+++ b/flx.el
@@ -91,7 +91,7 @@
 (defsubst flx-is-word (char)
   "returns t if char is word"
   (and char
-       (not (memq char '(?\  ?- ?_ ?. ?/ ?\\)))))
+       (not (memq char '(?\  ?- ?_ ?: ?. ?/ ?\\)))))
 
 (defsubst flx-is-capital (char)
   "returns t if char is word"
@@ -366,4 +366,4 @@ SCORE of nil means to clear the properties."
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;; flx.el ends here
\ No newline at end of file
+;;; flx.el ends here

Reply via email to