From: Pavel Janík Date: Sun, 14 Oct 2001 15:59:20 +0000 (+0000) Subject: (Fset_mouse_position): Improve style of comment to follow other comments. X-Git-Tag: ttn-vms-21-2-B4~19450 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d19be8a9e3598e07f3736310e6ffc50e9a9c32da;p=emacs.git (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. --- diff --git a/src/ChangeLog b/src/ChangeLog index c2f027c6347..ae9f01609d6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,13 @@ +2001-10-14 Pavel Jan,Bm(Bk + + * frame.c (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. + 2001-10-14 Gerd Moellmann * 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\ /* I think this should be done with a hook. */ #ifdef HAVE_WINDOW_SYSTEM if (FRAME_WINDOW_P (XFRAME (frame))) - /* Warping the mouse will cause enternotify and focus events. */ + /* Warping the mouse will cause enternotify and focus events. */ x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y)); #else #if defined (MSDOS) && defined (HAVE_MOUSE) @@ -1442,7 +1442,7 @@ before calling this function on it, like this.\n\ /* I think this should be done with a hook. */ #ifdef HAVE_WINDOW_SYSTEM if (FRAME_WINDOW_P (XFRAME (frame))) - /* Warping the mouse will cause enternotify and focus events. */ + /* Warping the mouse will cause enternotify and focus events. */ x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y)); #else #if defined (MSDOS) && defined (HAVE_MOUSE) @@ -1461,7 +1461,7 @@ static void make_frame_visible_1 P_ ((Lisp_Object)); DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, 0, 1, "", - "Make the frame FRAME visible (assuming it is an X-window).\n\ + "Make the frame FRAME visible (assuming it is an X window).\n\ If omitted, FRAME defaults to the currently selected frame.") (frame) Lisp_Object frame; @@ -1482,7 +1482,7 @@ If omitted, FRAME defaults to the currently selected frame.") make_frame_visible_1 (XFRAME (frame)->root_window); - /* Make menu bar update for the Buffers and Frams menus. */ + /* Make menu bar update for the Buffers and Frames menus. */ windows_or_buffers_changed++; return frame; @@ -1513,7 +1513,7 @@ make_frame_visible_1 (window) DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, 0, 2, "", - "Make the frame FRAME invisible (assuming it is an X-window).\n\ + "Make the frame FRAME invisible (assuming it is an X window).\n\ If omitted, FRAME defaults to the currently selected frame.\n\ Normally you may not make FRAME invisible if all other frames are invisible,\n\ but 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.") x_make_frame_invisible (XFRAME (frame)); #endif - /* Make menu bar update for the Buffers and Frams menus. */ + /* Make menu bar update for the Buffers and Frames menus. */ windows_or_buffers_changed++; return Qnil; @@ -1588,7 +1588,7 @@ If omitted, FRAME defaults to the currently selected frame.") x_iconify_frame (XFRAME (frame)); #endif - /* Make menu bar update for the Buffers and Frams menus. */ + /* Make menu bar update for the Buffers and Frames menus. */ windows_or_buffers_changed++; return Qnil;