Now allows words with period in them ("e.g.").
authorFrancois Fleuret <francois@fleuret.org>
Thu, 27 May 2010 17:02:25 +0000 (19:02 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Thu, 27 May 2010 17:02:25 +0000 (19:02 +0200)
lookup-dict.el

index e89c237..134a495 100644 (file)
@@ -58,7 +58,7 @@ argument \\[universal-argument] forces the third."
 
     (when (string= word "") (setq word (read-input "Word: ")))
 
-    (setq word (replace-regexp-in-string "[^a-zA-Z\- ]" "" (or word "")))
+    (setq word (replace-regexp-in-string "[^a-zA-Z\- \.]" "" (or word "")))
 
     (let ((name (concat "*definition " word "*")))