]> git.eshelyaron.com Git - emacs.git/commitdiff
(list-buffers-noselect): Add help-echo to mouse-highlighted text.
authorEli Zaretskii <eliz@gnu.org>
Sun, 17 Jun 2001 11:33:10 +0000 (11:33 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 17 Jun 2001 11:33:10 +0000 (11:33 +0000)
lisp/ChangeLog
lisp/buff-menu.el

index faede76c8ad8a735d5a0e9720a860f66748f4240..e1401575946d88ea1219ef02e15c87e82de3dfe0 100644 (file)
@@ -1,5 +1,46 @@
 2001-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
+       mouse-highlighted text.
+
+       * textmodes/page-ext.el (pages-copy-header-and-position): Add
+       help-echo to mouse-highlighted text.
+
+       * tar-mode.el (tar-header-block-summarize): Add help-echo to
+       mouse-highlighted text.
+
+       * replace.el (occur): Add help-echo to mouse-highlighted text.
+
+       * progmodes/sh-script.el (sh-mark-line): Add help-echo to
+       mouse-highlighted text.
+
+       * progmodes/cpp.el (cpp-make-button): Add help-echo to
+       mouse-highlighted text.
+
+       * progmodes/compile.el (compile-reinitialize-errors): Add
+       help-echo to mouse-highlighted messages.
+       (compilation-forget-errors): Remove help-echo property as well.
+
+       * play/landmark.el (lm-plot-square, lm-init-display): Add
+       help-echo to mouse-highlighted text.
+
+       * play/gomoku.el (gomoku-plot-square, gomoku-init-display): Add
+       help-echo to mouse-highlighted text.
+
+       * dired.el (dired-insert-set-properties): Add help-echo to
+       mouse-highlighted text.
+       (dired-mark-pop-up): Remove help-echo property from the file
+       name.
+
+       * comint.el (comint-send-input): Add help-echo to
+       mouse-highlighted text.
+
+       * buff-menu.el (list-buffers-noselect): Add help-echo to
+       mouse-highlighted text.
+
+       * arc-mode.el (archive-summarize-files): Add help-echo to
+       mouse-highlighted text.
+
        * ffap.el (ffap-machine-p): Always return nil if
        open-network-stream is not fboundp.
 
index 2f50e9226e8399fcb4bbb5fdb2817d1047ae921b..67f72ddd3df5e3359a98cf04a67c316c4be9768a 100644 (file)
@@ -548,7 +548,9 @@ The R column contains a % for buffers that are read-only."
                (put-text-property this-buffer-line-start (point)
                                   'buffer buffer)
                (put-text-property this-buffer-line-start name-end
-                                  'mouse-face 'highlight))
+                                  'mouse-face 'highlight)
+               (put-text-property this-buffer-line-start name-end
+                                  'help-echo "mouse-2: select this buffer"))
              (let ((size (format "%8d" this-buffer-size))
                    (mode this-buffer-mode-name)
                    (excess (- (current-column) 17)))