Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6e604a9b
Commit
6e604a9b
authored
May 26, 2005
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Frecursive_edit): Fix typo in docstring.
(Fposn_at_x_y): Make arguments match the docstring.
parent
f8ab034e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
src/ChangeLog
src/ChangeLog
+8
-3
src/keyboard.c
src/keyboard.c
+3
-3
No files found.
src/ChangeLog
View file @
6e604a9b
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): Add
ed
code
for mouse-face. Change the type of the first argument from `window'
to `Lis
t
_Object'.
* xdisp.c (note_mode_line_or_margin_highlight): Add code
for mouse-face.
Change the type of the first argument from `window'
to `Lis
p
_Object'.
(note_mouse_highlight): Call note_mode_line_or_margin_highlight with
window instead of w.
...
...
src/keyboard.c
View file @
6e604a9b
...
...
@@ -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.
Alternat
iv
ely, `(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);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment