summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fcomp.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/fcomp.el b/fcomp.el
index e765162..68d0081 100644
--- a/fcomp.el
+++ b/fcomp.el
@@ -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
-