aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-10-14 15:59:20 +0000
committerPavel Janík2001-10-14 15:59:20 +0000
commitd19be8a9e3598e07f3736310e6ffc50e9a9c32da (patch)
tree7cbe5fb5dcc68d7b45bcfefefa356c801fd47e02 /src
parentecdbe16a1f6d0f6002cb0dc2a5659ef98c0e970b (diff)
downloademacs-d19be8a9e3598e07f3736310e6ffc50e9a9c32da.tar.gz
emacs-d19be8a9e3598e07f3736310e6ffc50e9a9c32da.zip
(Fset_mouse_position): Improve style of comment to follow other comments.
(Fset_mouse_pixel_position): Improve style of comment to follow other comments. (Fmake_frame_visible): Doc fix and typo in comment. (Fmake_frame_invisible): Doc fix and typo in comment. (Ficonify_frame): Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/frame.c14
2 files changed, 17 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c2f027c6347..ae9f01609d6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12001-10-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * frame.c (Fset_mouse_position): Improve style of comment to
4 follow other comments.
5 (Fset_mouse_pixel_position): Improve style of comment to follow
6 other comments.
7 (Fmake_frame_visible): Doc fix and typo in comment.
8 (Fmake_frame_invisible): Doc fix and typo in comment.
9 (Ficonify_frame): Fix typo in comment.
10
12001-10-14 Gerd Moellmann <gerd@gnu.org> 112001-10-14 Gerd Moellmann <gerd@gnu.org>
2 12
3 * xfns.c, dispnew.c, xterm.c, xdisp.c, xfaces.c, xmenu.c 13 * xfns.c, dispnew.c, xterm.c, xdisp.c, xfaces.c, xmenu.c
diff --git a/src/frame.c b/src/frame.c
index 0e41812b800..f6a4ee8e2cf 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1410,7 +1410,7 @@ before calling this function on it, like this.\n\
1410 /* I think this should be done with a hook. */ 1410 /* I think this should be done with a hook. */
1411#ifdef HAVE_WINDOW_SYSTEM 1411#ifdef HAVE_WINDOW_SYSTEM
1412 if (FRAME_WINDOW_P (XFRAME (frame))) 1412 if (FRAME_WINDOW_P (XFRAME (frame)))
1413 /* Warping the mouse will cause enternotify and focus events. */ 1413 /* Warping the mouse will cause enternotify and focus events. */
1414 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y)); 1414 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1415#else 1415#else
1416#if defined (MSDOS) && defined (HAVE_MOUSE) 1416#if defined (MSDOS) && defined (HAVE_MOUSE)
@@ -1442,7 +1442,7 @@ before calling this function on it, like this.\n\
1442 /* I think this should be done with a hook. */ 1442 /* I think this should be done with a hook. */
1443#ifdef HAVE_WINDOW_SYSTEM 1443#ifdef HAVE_WINDOW_SYSTEM
1444 if (FRAME_WINDOW_P (XFRAME (frame))) 1444 if (FRAME_WINDOW_P (XFRAME (frame)))
1445 /* Warping the mouse will cause enternotify and focus events. */ 1445 /* Warping the mouse will cause enternotify and focus events. */
1446 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y)); 1446 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1447#else 1447#else
1448#if defined (MSDOS) && defined (HAVE_MOUSE) 1448#if defined (MSDOS) && defined (HAVE_MOUSE)
@@ -1461,7 +1461,7 @@ static void make_frame_visible_1 P_ ((Lisp_Object));
1461 1461
1462DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, 1462DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1463 0, 1, "", 1463 0, 1, "",
1464 "Make the frame FRAME visible (assuming it is an X-window).\n\ 1464 "Make the frame FRAME visible (assuming it is an X window).\n\
1465If omitted, FRAME defaults to the currently selected frame.") 1465If omitted, FRAME defaults to the currently selected frame.")
1466 (frame) 1466 (frame)
1467 Lisp_Object frame; 1467 Lisp_Object frame;
@@ -1482,7 +1482,7 @@ If omitted, FRAME defaults to the currently selected frame.")
1482 1482
1483 make_frame_visible_1 (XFRAME (frame)->root_window); 1483 make_frame_visible_1 (XFRAME (frame)->root_window);
1484 1484
1485 /* Make menu bar update for the Buffers and Frams menus. */ 1485 /* Make menu bar update for the Buffers and Frames menus. */
1486 windows_or_buffers_changed++; 1486 windows_or_buffers_changed++;
1487 1487
1488 return frame; 1488 return frame;
@@ -1513,7 +1513,7 @@ make_frame_visible_1 (window)
1513 1513
1514DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, 1514DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1515 0, 2, "", 1515 0, 2, "",
1516 "Make the frame FRAME invisible (assuming it is an X-window).\n\ 1516 "Make the frame FRAME invisible (assuming it is an X window).\n\
1517If omitted, FRAME defaults to the currently selected frame.\n\ 1517If omitted, FRAME defaults to the currently selected frame.\n\
1518Normally you may not make FRAME invisible if all other frames are invisible,\n\ 1518Normally you may not make FRAME invisible if all other frames are invisible,\n\
1519but if the second optional argument FORCE is non-nil, you may do so.") 1519but if the second optional argument FORCE is non-nil, you may do so.")
@@ -1549,7 +1549,7 @@ but if the second optional argument FORCE is non-nil, you may do so.")
1549 x_make_frame_invisible (XFRAME (frame)); 1549 x_make_frame_invisible (XFRAME (frame));
1550#endif 1550#endif
1551 1551
1552 /* Make menu bar update for the Buffers and Frams menus. */ 1552 /* Make menu bar update for the Buffers and Frames menus. */
1553 windows_or_buffers_changed++; 1553 windows_or_buffers_changed++;
1554 1554
1555 return Qnil; 1555 return Qnil;
@@ -1588,7 +1588,7 @@ If omitted, FRAME defaults to the currently selected frame.")
1588 x_iconify_frame (XFRAME (frame)); 1588 x_iconify_frame (XFRAME (frame));
1589#endif 1589#endif
1590 1590
1591 /* Make menu bar update for the Buffers and Frams menus. */ 1591 /* Make menu bar update for the Buffers and Frames menus. */
1592 windows_or_buffers_changed++; 1592 windows_or_buffers_changed++;
1593 1593
1594 return Qnil; 1594 return Qnil;