From: Dmitry Gutov Date: Wed, 7 Jan 2015 18:26:09 +0000 (+0300) Subject: Remove ineffective change from c6e9fbad312fc62876d40032a84a94439a055d05 X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/80620a1b18f7ee293cec2f415088a3d12b821feb Remove ineffective change from c6e9fbad312fc62876d40032a84a94439a055d05 The strings before " : " should only contain function names. --- diff --git a/company-clang.el b/company-clang.el index 459056d0b..8114b3b5b 100644 --- a/company-clang.el +++ b/company-clang.el @@ -110,7 +110,7 @@ or automatically through a custom `company-clang-prefix-guesser'." ;; TODO: Handle Pattern (syntactic hints would be neat). ;; Do we ever see OVERLOAD (or OVERRIDE)? (defconst company-clang--completion-pattern - "^COMPLETION: \\_<\\(%s[a-zA-Z0-9_:<>]*\\)\\(?: : \\(.*\\)$\\)?$") + "^COMPLETION: \\_<\\(%s[a-zA-Z0-9_:]*\\)\\(?: : \\(.*\\)$\\)?$") (defconst company-clang--error-buffer-name "*clang-error*")