branch: externals/ebdb commit b56bf29dfe51e3310336dc39a27815e60d4353b3 Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
Adjust snarfing regexp for names * ebdb-snarf.el (ebdb-snarf-name-re): The [:space:] class includes newlines, which we don't want. Realistically, this regexp is going to need a whole lot more adjustment to be useful. --- ebdb-snarf.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebdb-snarf.el b/ebdb-snarf.el index fa892fd..505fc10 100644 --- a/ebdb-snarf.el +++ b/ebdb-snarf.el @@ -65,7 +65,7 @@ expression should contain at least one parenthetical group: the :type 'list) (defcustom ebdb-snarf-name-re - (list "\\(?:[[:upper:]][[:lower:]'-]+[,.[:space:]]*\\)\\{2,\\}") + (list "\\(?:[[:upper:]][[:lower:]'-]+[,.[:blank:]]*\\)\\{2,\\}") "A list of regular expressions matching names.