diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/xref.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df760f20a7e..76ba2cd4c80 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-01-05 Dmitry Gutov <dgutov@yandex.ru> | ||
| 2 | |||
| 3 | * progmodes/xref.el (xref--insert-xrefs): Add `help-echo' property | ||
| 4 | to the references. | ||
| 5 | |||
| 1 | 2015-01-05 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2015-01-05 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * minibuffer.el (completion-category-defaults): New var. | 8 | * minibuffer.el (completion-category-defaults): New var. |
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 41b70c7eff2..b822619f783 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -434,7 +434,8 @@ GROUP is a string for decoration purposes and XREF is an | |||
| 434 | (list 'xref-location location | 434 | (list 'xref-location location |
| 435 | 'face 'font-lock-keyword-face | 435 | 'face 'font-lock-keyword-face |
| 436 | 'mouse-face 'highlight | 436 | 'mouse-face 'highlight |
| 437 | 'keymap xref--button-map) | 437 | 'keymap xref--button-map |
| 438 | 'help-echo "mouse-2: display, RET or mouse-1: navigate") | ||
| 438 | description)) | 439 | description)) |
| 439 | (when (or more1 more2) | 440 | (when (or more1 more2) |
| 440 | (insert "\n"))))) | 441 | (insert "\n"))))) |