diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-03-24 15:42:17 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-03-24 15:42:17 +0000 |
commit | 87c891c71bd9b6c0eec05c1572ea455e0ff7d705 (patch) | |
tree | a40a8b3715e9ff5e2580334b1a874876c65b206b | |
parent | 573ab279d69451d07a7780b6c6b4de147ca8b5fe (diff) | |
download | emacs-87c891c71bd9b6c0eec05c1572ea455e0ff7d705.tar.gz |
(Fx_show_tip): Doc fix.
-rw-r--r-- | src/ChangeLog | 8 | ||||
-rw-r--r-- | src/macfns.c | 2 | ||||
-rw-r--r-- | src/w32fns.c | 2 | ||||
-rw-r--r-- | src/xfns.c | 2 |
4 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4c40f05ef92..478e4873ac5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2007-03-24 Eli Zaretskii <eliz@gnu.org> + + * xfns.c (Fx_show_tip): Doc fix. + + * macfns.c (Fx_show_tip): Doc fix. + + * w32fns.c (Fx_show_tip): Doc fix. + 2007-03-23 Kim F. Storm <storm@cua.dk> * intervals.c (merge_properties, intervals_equal): diff --git a/src/macfns.c b/src/macfns.c index 1857950aad7..d4483621654 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -4115,6 +4115,8 @@ DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0, doc: /* Show STRING in a "tooltip" window on frame FRAME. A tooltip window is a small window displaying a string. +This is an internal function; Lisp code should call `tooltip-show'. + FRAME nil or omitted means use the selected frame. PARMS is an optional list of frame parameters which can be used to diff --git a/src/w32fns.c b/src/w32fns.c index e4961a6bfbe..8cac4ea2376 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -7498,6 +7498,8 @@ DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0, doc: /* Show STRING in a \"tooltip\" window on frame FRAME. A tooltip window is a small window displaying a string. +This is an internal function; Lisp code should call `tooltip-show'. + FRAME nil or omitted means use the selected frame. PARMS is an optional list of frame parameters which can be diff --git a/src/xfns.c b/src/xfns.c index 47e78222cbf..03cbaaec8e2 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -5030,6 +5030,8 @@ DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0, doc: /* Show STRING in a "tooltip" window on frame FRAME. A tooltip window is a small X window displaying a string. +This is an internal function; Lisp code should call `tooltip-show'. + FRAME nil or omitted means use the selected frame. PARMS is an optional list of frame parameters which can be used to |