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
b0c33a94
Commit
b0c33a94
authored
Jan 14, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fwindow_at): Doc fix.
parent
65565c68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/window.c
src/window.c
+6
-6
No files found.
src/window.c
View file @
b0c33a94
...
...
@@ -427,12 +427,12 @@ window_from_coordinates (frame, x, y, part)
}
DEFUN
(
"window-at"
,
Fwindow_at
,
Swindow_at
,
2
,
3
,
0
,
"Return window containing
row ROW, column COLUMN
on FRAME.
\n
\
"Return window containing
coordinates X and Y
on FRAME.
\n
\
If omitted, FRAME defaults to the currently selected frame.
\n
\
The top left corner of the frame is considered to be row 0,
\n
\
column 0."
)
(
row
,
column
,
frame
)
Lisp_Object
row
,
column
,
frame
;
(
x
,
y
,
frame
)
Lisp_Object
x
,
y
,
frame
;
{
int
part
;
...
...
@@ -442,11 +442,11 @@ column 0.")
else
CHECK_LIVE_FRAME
(
frame
,
2
);
#endif
CHECK_NUMBER
(
row
,
0
);
CHECK_NUMBER
(
column
,
1
);
CHECK_NUMBER
(
x
,
0
);
CHECK_NUMBER
(
y
,
1
);
return
window_from_coordinates
(
XFRAME
(
frame
),
XINT
(
row
),
XINT
(
column
),
XINT
(
x
),
XINT
(
y
),
&
part
);
}
...
...
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