diff options
Diffstat (limited to 'fcomp.el')
-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 - |