branch: elpa/annotate commit 553116dc61899080b64a05a069934e4c6d618efe Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- added missing unquote in macro 'annotate-with-restore-modified-bit'. --- annotate.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotate.el b/annotate.el index bc3be8c980..3677e2ab3e 100644 --- a/annotate.el +++ b/annotate.el @@ -287,7 +287,7 @@ annotation as defined in the database." (let ((modifiedp (gensym))) `(let ((,modifiedp (buffer-modified-p))) ,@body - (set-buffer-modified-p modifiedp)))) + (set-buffer-modified-p ,modifiedp)))) (defun annotate-end-of-line-pos () "Get the position of the end of line and rewind the point's