# HG changeset patch # User Juanma Barranquero # Date 1117119235 0 # Node ID 3cf2ae5f446dc3b127070fb8e248a4744abdc8fe # Parent d0f8033496b15810238fa5eb98b04236b6973fe7 (Frecursive_edit): Fix typo in docstring. (Fposn_at_x_y): Make arguments match the docstring. diff -r d0f8033496b1 -r 3cf2ae5f446d src/keyboard.c --- a/src/keyboard.c Thu May 26 14:35:47 2005 +0000 +++ b/src/keyboard.c Thu May 26 14:53:55 2005 +0000 @@ -1020,7 +1020,7 @@ doc: /* Invoke the editor command loop recursively. To get out of the recursive edit, a command can do `(throw 'exit nil)'; that tells this function to return. -Alternately, `(throw 'exit t)' makes this function signal an error. +Alternatively, `(throw 'exit t)' makes this function signal an error. This function is called by the editor initialization to begin editing. */) () { @@ -10548,7 +10548,7 @@ DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0, doc: /* Return position information for pixel coordinates X and Y. By default, X and Y are relative to text area of the selected window. -Optional third arg FRAME_OR_WINDOW non-nil specifies frame or window. +Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window. If optional fourth arg WHOLE is non-nil, X is relative to the left edge of the window. @@ -10848,7 +10848,7 @@ staticpro (&Qdrag_n_drop); Qsave_session = intern ("save-session"); - staticpro(&Qsave_session); + staticpro (&Qsave_session); Qusr1_signal = intern ("usr1-signal"); staticpro (&Qusr1_signal);