diff options
| author | Masatake YAMATO | 2012-06-25 00:11:03 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-06-25 00:11:03 -0700 |
| commit | 26e8548ea1f5261b362c4bb438a4f09c0121acfc (patch) | |
| tree | 1b4b3ab32a887cb8c545346ec955e59890ac8779 | |
| parent | 3b6f72805ec9de05c39e443fa178fd23bef69e00 (diff) | |
| download | emacs-26e8548ea1f5261b362c4bb438a4f09c0121acfc.tar.gz emacs-26e8548ea1f5261b362c4bb438a4f09c0121acfc.zip | |
* lisp/progmodes/which-func.el (which-func-format): Add mouse-face.
Fixes: debbugs:11698
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/which-func.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8196cae2056..ab355217b9e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-06-25 Masatake YAMATO <yamato@redhat.com> | ||
| 2 | |||
| 3 | * progmodes/which-func.el (which-func-format): | ||
| 4 | Add mouse-face. (Bug#11698) | ||
| 5 | |||
| 1 | 2012-06-24 Leo Liu <sdl.web@gmail.com> | 6 | 2012-06-24 Leo Liu <sdl.web@gmail.com> |
| 2 | 7 | ||
| 3 | * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer | 8 | * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer |
diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el index 01b4c6829f7..7a810fb1e8f 100644 --- a/lisp/progmodes/which-func.el +++ b/lisp/progmodes/which-func.el | |||
| @@ -143,7 +143,7 @@ Zero means compute the Imenu menu regardless of size." | |||
| 143 | (:propertize which-func-current | 143 | (:propertize which-func-current |
| 144 | local-map ,which-func-keymap | 144 | local-map ,which-func-keymap |
| 145 | face which-func | 145 | face which-func |
| 146 | ;;mouse-face highlight ; currently not evaluated :-( | 146 | mouse-face mode-line-highlight |
| 147 | help-echo "mouse-1: go to beginning\n\ | 147 | help-echo "mouse-1: go to beginning\n\ |
| 148 | mouse-2: toggle rest visibility\n\ | 148 | mouse-2: toggle rest visibility\n\ |
| 149 | mouse-3: go to end") | 149 | mouse-3: go to end") |