commit b049edc42fcfd2ccc3667550c4e2fff60db1ca57 Author: Campbell Barton Date: Thu Dec 30 17:20:45 2021 +1100 Fix bug where bookmark-jump used (point), not (point-at-bol) This matches changes from e852822f3db469c985bf022651f184d6ff2c518a, regression in 7fe88446c30279285e3171091189b3d1af697c05. diff --git a/lisp/bookmark.el b/lisp/bookmark.el index f35cbc1a5e..0c93cec809 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -1155,7 +1155,7 @@ bookmark--jump-via ;; FIXME: we used to only run bookmark-after-jump-hook in ;; `bookmark-jump' itself, but in none of the other commands. (when bookmark-set-fringe-mark - (let ((overlays (overlays-in (point) (point))) + (let ((overlays (overlays-in (point-at-bol) (1+ (point-at-bol)))) temp found) (while (and (not found) (setq temp (pop overlays))) (when (eq 'bookmark (overlay-get temp 'category))