From da8975c03f1024368ed8616f971b503189523cef Mon Sep 17 00:00:00 2001 From: Kazu Yamamoto Date: Mon, 14 Jun 2010 10:57:43 +0900 Subject: [PATCH] adding '.' for completion start point. --- elisp/ghc-comp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/ghc-comp.el b/elisp/ghc-comp.el index f43ecc8..423cc64 100644 --- a/elisp/ghc-comp.el +++ b/elisp/ghc-comp.el @@ -170,7 +170,7 @@ (defun ghc-completion-start-point () (save-excursion (let ((beg (save-excursion (beginning-of-line) (point)))) - (if (re-search-backward "[ (,`]" beg t) + (if (re-search-backward "[ (.,`]" beg t) (1+ (point)) beg))))