branch: externals/org-remark commit f30ad4f570a739f6f6654ec41299e6380c941df0 Author: Noboru Ota <m...@nobiot.com> Commit: Noboru Ota <m...@nobiot.com>
fix: program error in save --- org-remark.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/org-remark.el b/org-remark.el index bdb379bdba..029cb62fe7 100644 --- a/org-remark.el +++ b/org-remark.el @@ -643,10 +643,9 @@ passed. If so, no new ID gets generated." ;; Adding overlay to the buffer does not set the buffer modified. You ;; cannot use `undo' to undo highlights, either. (unless load-only - (org-remark-single-highlight-save beg end + (org-remark-single-highlight-save beg end (overlay-properties ov) (org-remark-single-highlight-get-title) - (abbreviate-file-name (buffer-file-name)) - (overlay-properties ov))) + (abbreviate-file-name (buffer-file-name)))) (deactivate-mark))) (org-remark-housekeep) (org-remark-highlights-sort))