Mercurial > emacs
changeset 39918:fa0407ac162f
(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.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Sun, 14 Oct 2001 15:56:57 +0000 |
parents | eb6a85173992 |
children | a17220779763 |
files | src/frame.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Sun Oct 14 15:16:57 2001 +0000 +++ b/src/frame.c Sun Oct 14 15:56:57 2001 +0000 @@ -1410,7 +1410,7 @@ /* 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 @@ /* 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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;