From 6e604a9b7863a808d37791730767e080031491d1 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 26 May 2005 14:56:28 +0000 Subject: [PATCH] (Frecursive_edit): Fix typo in docstring. (Fposn_at_x_y): Make arguments match the docstring. --- src/ChangeLog | 11 ++++++++--- src/keyboard.c | 6 +++--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5ae649cb301..ab05e235098 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-05-26 Juanma Barranquero + + * keyboard.c (Frecursive_edit): Fix typo in docstring. + (Fposn_at_x_y): Make argument name match its use in docstring. + 2005-05-26 Lute Kamstra * eval.c (Frun_hooks): Mention run-mode-hooks in docstring. @@ -30,9 +35,9 @@ 2005-05-23 Masatake YAMATO - * xdisp.c (note_mode_line_or_margin_highlight): Added code - for mouse-face. Change the type of the first argument from `window' - to `List_Object'. + * xdisp.c (note_mode_line_or_margin_highlight): Add code + for mouse-face. Change the type of the first argument from `window' + to `Lisp_Object'. (note_mouse_highlight): Call note_mode_line_or_margin_highlight with window instead of w. diff --git a/src/keyboard.c b/src/keyboard.c index 22da49907c7..baba3c466d2 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1020,7 +1020,7 @@ DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", 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 @@ The elements of this list correspond to the arguments of 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 @@ syms_of_keyboard () staticpro (&Qdrag_n_drop); Qsave_session = intern ("save-session"); - staticpro(&Qsave_session); + staticpro (&Qsave_session); Qusr1_signal = intern ("usr1-signal"); staticpro (&Qusr1_signal); -- 2.39.2