branch: elpa/annotate commit 41e85c84351a8d75e3d8d9b262a4d8d6fc7e2c5c Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- increased version number; - updated NEWS; - created Changelog. --- Changelog | 9 +++++++++ NEWS.org | 4 ++++ annotate.el | 4 ++-- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog new file mode 100644 index 0000000000..9d9f09e3fd --- /dev/null +++ b/Changelog @@ -0,0 +1,9 @@ +2020-01-22 Bastian Bechtold, cage + + * annotate.el (annotate--font-lock-matcher): + - fixed error for regexp search + Sometimes some modes/package puts overlay on the last character of a + buffer (notably SLIME when the parenthesis of a form are not + balanced). This will make 're-search-forward' in the aforementioned + function fails and font lock becomes a mess (e.g. text color + disappears). diff --git a/NEWS.org b/NEWS.org index a8ead98ba0..14f9889c14 100644 --- a/NEWS.org +++ b/NEWS.org @@ -81,3 +81,7 @@ not loaded; - a simple heuristic is used to search for annotated text when annotate mode is loaded. + +- 2020-01-22 V0.5.1 Bastian Bechtold, cage :: + - fixed bug that prevented correct fontifications for major modes + that puts overlays on the buffer's text (e.g. SLIME). diff --git a/annotate.el b/annotate.el index 30cf67a59a..884424ed06 100644 --- a/annotate.el +++ b/annotate.el @@ -7,7 +7,7 @@ ;; Maintainer: Bastian Bechtold ;; URL: https://github.com/bastibe/annotate.el ;; Created: 2015-06-10 -;; Version: 0.5.0 +;; Version: 0.5.1 ;; This file is NOT part of GNU Emacs. @@ -52,7 +52,7 @@ ;;;###autoload (defgroup annotate nil "Annotate files without changing them." - :version "0.5.0" + :version "0.5.1" :group 'text) ;;;###autoload