]> git.eshelyaron.com Git - emacs.git/commitdiff
(Frecursive_edit): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 26 May 2005 14:56:28 +0000 (14:56 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 26 May 2005 14:56:28 +0000 (14:56 +0000)
(Fposn_at_x_y): Make arguments match the docstring.

src/ChangeLog
src/keyboard.c

index 5ae649cb30122904521d145a4033abee6e3a8ec4..ab05e235098269be90e10bb03d4a33f0f36851bb 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-26  Juanma Barranquero  <lekktu@gmail.com>
+
+       * 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  <lute@gnu.org>
 
        * eval.c (Frun_hooks): Mention run-mode-hooks in docstring.
@@ -30,9 +35,9 @@
 
 2005-05-23  Masatake YAMATO  <jet@gyve.org>
 
-       * 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.
 
index 22da49907c723d7652f7a19e466a26e0e63e6628..baba3c466d2cfa57bb220c3345ed7eb419451b43 100644 (file)
@@ -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);