diff --git a/doc/emacs/mini.texi b/doc/emacs/mini.texi index b0f6e424a7f..56222bb6e1c 100644 --- a/doc/emacs/mini.texi +++ b/doc/emacs/mini.texi @@ -497,7 +497,10 @@ falls back on the next style. @vindex completion-styles The list variable @code{completion-styles} specifies the completion styles to use. Each list element is the name of a completion style (a -Lisp symbol). The default completion styles are (in order): +Lisp symbol). The available style symbols are stored in the variable +@code{completion-styles-alist} (@pxref{Completion Variables,,, elisp, +The Emacs Lisp Reference Manual}). The default completion styles are +(in order): @table @code @item basic diff --git a/lisp/bookmark.el b/lisp/bookmark.el index f35cbc1a5ec..0c93cec8096 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -1155,7 +1155,7 @@ and then show any annotations for this bookmark." ;; 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))