summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-05-26 14:56:28 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-05-26 14:56:28 +0000
commit6e604a9b7863a808d37791730767e080031491d1 (patch)
tree043e56a6fcf197cd8c6fb23d4a83605a4bb8ae2a /src/keyboard.c
parentf8ab034e35f9f1acc1ca3f4a2401c67403472b9c (diff)
downloademacs-6e604a9b7863a808d37791730767e080031491d1.tar.gz
(Frecursive_edit): Fix typo in docstring.
(Fposn_at_x_y): Make arguments match the docstring.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c6
1 files changed, 3 insertions, 3 deletions
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);