From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: tooltip-mode docstring Date: Mon, 9 Jan 2006 21:21:40 -0600 (CST) Message-ID: <200601100321.k0A3Lew19957@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1136863486 14759 80.91.229.2 (10 Jan 2006 03:24:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 10 Jan 2006 03:24:46 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 10 04:24:45 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EwA7n-0003of-GN for ged-emacs-devel@m.gmane.org; Tue, 10 Jan 2006 04:24:43 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EwA9k-0002cC-IE for ged-emacs-devel@m.gmane.org; Mon, 09 Jan 2006 22:26:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EwA9Q-0002Ze-Df for emacs-devel@gnu.org; Mon, 09 Jan 2006 22:26:24 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EwA9P-0002YN-LM for emacs-devel@gnu.org; Mon, 09 Jan 2006 22:26:23 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EwA9P-0002YF-IT for emacs-devel@gnu.org; Mon, 09 Jan 2006 22:26:23 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EwABn-0007Cy-Bz for emacs-devel@gnu.org; Mon, 09 Jan 2006 22:28:51 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.13.3+Sun/8.13.3) with ESMTP id k0A3OK6r003549 for ; Mon, 9 Jan 2006 21:24:20 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id k0A3Lew19957; Mon, 9 Jan 2006 21:21:40 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Mon, 09 Jan 2006 21:24:20 -0600 (CST) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:48892 Archived-At: The docstring of tooltip-mode does not seem very helpful. It misleadingly suggests that if you disable it, you do not get to see any help-text on mouse-over, whereas tooltip-mode only determines _where_ you see that thext rather than _whether_ you see it. Unless there are objections, I plan to install the following doc fix: ===File ~/tooltip-diff====================================== *** tooltip.el 20 Dec 2005 15:59:43 -0600 1.72 --- tooltip.el 09 Jan 2006 21:14:26 -0600 *************** *** 48,54 **** (define-minor-mode tooltip-mode "Toggle Tooltip display. ! With ARG, turn tooltip mode on if and only if ARG is positive." :global t :init-value (not (or noninteractive emacs-basic-display --- 48,57 ---- (define-minor-mode tooltip-mode "Toggle Tooltip display. ! With ARG, turn tooltip mode on if and only if ARG is positive. ! When this minor mode is enabled, Emacs displays help text ! in a pop-up tooltip on mouse-over. When it is disabled, ! Emacs displays the help text in the echo area instead." :global t :init-value (not (or noninteractive emacs-basic-display ============================================================