diff --git a/CHANGELOG.md b/CHANGELOG.md index cc4777f7..21f5b596 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Halstead metrics: show full function signatures. - DUB projects: added support for the _syntax_ build type. (#83) - GDB commander: arguments of the _Debugee Options_ can be temporarily deactivated by prepending `//`. +- Search results: use GNU style messages. (#84) # v3.9.11 diff --git a/src/u_search.pas b/src/u_search.pas index f0cfe178..be59b6ac 100644 --- a/src/u_search.pas +++ b/src/u_search.pas @@ -499,9 +499,9 @@ begin begin msg := format('%d result(s) for the pattern `%s` in %s', [length(res), fToFind, filename]); - msgs.message(msg, nil, amcSearch, amkInf); + msgs.message(msg, nil, amcSearch, amkBub); end; - fmt := fileName + '(%d,%d): "%s"'; + fmt := fileName + ':%d:%d: "%s"'; // highlighting if ssoRegExpr in options then begin