branch: master commit 80620a1b18f7ee293cec2f415088a3d12b821feb Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
Remove ineffective change from c6e9fbad312fc62876d40032a84a94439a055d05 The strings before " : " should only contain function names. --- company-clang.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/company-clang.el b/company-clang.el index 459056d..8114b3b 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*")