Revision | 436f5f01a2736874fa7978dd39b32cf76de5c756 (tree) |
---|---|
Zeit | 2019-02-18 01:32:48 |
Autor | ![]() |
Commiter | Shawn Ellis |
Changed the regexp to match on WARN too.
@@ -3,7 +3,7 @@ | ||
3 | 3 | ;; Copyright (C) 2017 |
4 | 4 | |
5 | 5 | ;; Author: Shawn Ellis <shawn.ellis17@gmail.com> |
6 | -;; Version: 0.0.6 | |
6 | +;; Version: 0.0.7 | |
7 | 7 | ;; Package-Requires: ((emacs "24.3")) |
8 | 8 | ;; URL: https://bitbucket.org/ellisvelo/lognav-mode |
9 | 9 | ;; Keywords: log error lognav-mode convenience |
@@ -54,7 +54,7 @@ | ||
54 | 54 | :group 'convenience) |
55 | 55 | |
56 | 56 | |
57 | -(defcustom lognav-regexp "\\(FATAL\\)\\|\\(ERROR\\)\\|\\(WARNING\\)\\|\\(SEVERE\\)\\|\\(Caused by:\\)\\|\\(nested exception is:\\)" | |
57 | +(defcustom lognav-regexp "\\(FATAL\\)\\|\\(ERROR\\)\\|\\(WARN\\)\\|\\(SEVERE\\)\\|\\(Caused by:\\)\\|\\(nested exception is:\\)" | |
58 | 58 | "Regular expression used for navigating errors." |
59 | 59 | :type 'regexp) |
60 | 60 |