diff options
author | Anastasios Grammenos <anastasios.grammenos@noris.gr> | 2020-09-26 14:14:36 +0300 |
---|---|---|
committer | Anastasios Grammenos <anastasios.grammenos@noris.gr> | 2020-09-26 14:14:36 +0300 |
commit | 3031d1096fcd814bf2965fe021ce833f3e5c8f5a (patch) | |
tree | a6fc3ae16194cc022f55ceaf1bc132f658b673bf | |
parent | dcf93b3f4cf0f2f7e4f9f16d10dfd475a26d28d2 (diff) | |
download | fcomp-3031d1096fcd814bf2965fe021ce833f3e5c8f5a.tar.gz fcomp-3031d1096fcd814bf2965fe021ce833f3e5c8f5a.tar.bz2 fcomp-3031d1096fcd814bf2965fe021ce833f3e5c8f5a.zip |
-rw-r--r-- | fcomp.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -145,7 +145,7 @@ and `fcomp-extra-valid-chars' as part of a word." (mapc (lambda (char) (modify-syntax-entry char "w" table)) fcomp-extra-valid-chars)) (modify-syntax-entry ?- "w" table) (modify-syntax-entry ?_ "w" table) - (copy-syntax-table table))) + table)) (defun fcomp-get-canditates (word) "Return a list of candidates for WORD curated by fcomp." @@ -170,4 +170,3 @@ Requires fcomp. Get it at URL `https://git.eyesin.space/git/fcomp'" (provide 'fcomp) ;;; fcomp.el ends here - |