diff options
| author | Eli Zaretskii | 2001-06-17 11:33:10 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-06-17 11:33:10 +0000 |
| commit | 092924fd73ac6caabbdb854fd0b307277e254937 (patch) | |
| tree | 44cc683a10f7cf2eb3a440690072ed03d95c3ce9 | |
| parent | a865de85dabe98dce5e45396f0dd0612cff9d3c9 (diff) | |
| download | emacs-092924fd73ac6caabbdb854fd0b307277e254937.tar.gz emacs-092924fd73ac6caabbdb854fd0b307277e254937.zip | |
(list-buffers-noselect): Add help-echo to mouse-highlighted text.
| -rw-r--r-- | lisp/ChangeLog | 41 | ||||
| -rw-r--r-- | lisp/buff-menu.el | 4 |
2 files changed, 44 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index faede76c8ad..e1401575946 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,46 @@ | |||
| 1 | 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to | ||
| 4 | mouse-highlighted text. | ||
| 5 | |||
| 6 | * textmodes/page-ext.el (pages-copy-header-and-position): Add | ||
| 7 | help-echo to mouse-highlighted text. | ||
| 8 | |||
| 9 | * tar-mode.el (tar-header-block-summarize): Add help-echo to | ||
| 10 | mouse-highlighted text. | ||
| 11 | |||
| 12 | * replace.el (occur): Add help-echo to mouse-highlighted text. | ||
| 13 | |||
| 14 | * progmodes/sh-script.el (sh-mark-line): Add help-echo to | ||
| 15 | mouse-highlighted text. | ||
| 16 | |||
| 17 | * progmodes/cpp.el (cpp-make-button): Add help-echo to | ||
| 18 | mouse-highlighted text. | ||
| 19 | |||
| 20 | * progmodes/compile.el (compile-reinitialize-errors): Add | ||
| 21 | help-echo to mouse-highlighted messages. | ||
| 22 | (compilation-forget-errors): Remove help-echo property as well. | ||
| 23 | |||
| 24 | * play/landmark.el (lm-plot-square, lm-init-display): Add | ||
| 25 | help-echo to mouse-highlighted text. | ||
| 26 | |||
| 27 | * play/gomoku.el (gomoku-plot-square, gomoku-init-display): Add | ||
| 28 | help-echo to mouse-highlighted text. | ||
| 29 | |||
| 30 | * dired.el (dired-insert-set-properties): Add help-echo to | ||
| 31 | mouse-highlighted text. | ||
| 32 | (dired-mark-pop-up): Remove help-echo property from the file | ||
| 33 | name. | ||
| 34 | |||
| 35 | * comint.el (comint-send-input): Add help-echo to | ||
| 36 | mouse-highlighted text. | ||
| 37 | |||
| 38 | * buff-menu.el (list-buffers-noselect): Add help-echo to | ||
| 39 | mouse-highlighted text. | ||
| 40 | |||
| 41 | * arc-mode.el (archive-summarize-files): Add help-echo to | ||
| 42 | mouse-highlighted text. | ||
| 43 | |||
| 3 | * ffap.el (ffap-machine-p): Always return nil if | 44 | * ffap.el (ffap-machine-p): Always return nil if |
| 4 | open-network-stream is not fboundp. | 45 | open-network-stream is not fboundp. |
| 5 | 46 | ||
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 2f50e9226e8..67f72ddd3df 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el | |||
| @@ -548,7 +548,9 @@ The R column contains a % for buffers that are read-only." | |||
| 548 | (put-text-property this-buffer-line-start (point) | 548 | (put-text-property this-buffer-line-start (point) |
| 549 | 'buffer buffer) | 549 | 'buffer buffer) |
| 550 | (put-text-property this-buffer-line-start name-end | 550 | (put-text-property this-buffer-line-start name-end |
| 551 | 'mouse-face 'highlight)) | 551 | 'mouse-face 'highlight) |
| 552 | (put-text-property this-buffer-line-start name-end | ||
| 553 | 'help-echo "mouse-2: select this buffer")) | ||
| 552 | (let ((size (format "%8d" this-buffer-size)) | 554 | (let ((size (format "%8d" this-buffer-size)) |
| 553 | (mode this-buffer-mode-name) | 555 | (mode this-buffer-mode-name) |
| 554 | (excess (- (current-column) 17))) | 556 | (excess (- (current-column) 17))) |