We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a3745d commit a83b899Copy full SHA for a83b899
bdx.el
@@ -600,7 +600,8 @@ This turns a string of the form \\='function<type<T>>\\=' into
600
(insert-row "type" type 'font-lock-type-face)
601
(insert "\n")))))
602
603
- (button-mode +1)
+ (when (fboundp 'button-mode)
604
+ (button-mode +1))
605
(goto-char (point-min)))
606
607
(ivy-configure 'bdx :occur #'bdx--occur)
@@ -850,7 +851,7 @@ If SYMBOL-PLIST is the symbol \\='interactive, then prompt for the symbol."
850
851
(pop-to-buffer (current-buffer))
852
(goto-char (point-min))
853
(forward-line (1- line))
- (pulse-momentary-highlight-one-line)
854
+ (pulse-momentary-highlight-one-line (point))
855
(recenter-top-bottom)
856
(cons file line)))))))
857
0 commit comments