diff options
author | Kim F. Storm <storm@cua.dk> | 2003-03-21 13:52:14 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2003-03-21 13:52:14 +0000 |
commit | b74b839745c7a1a09e5f8d14069032a0d9d065c5 (patch) | |
tree | fc1d8809703c0e6417945e37ec68e1b0ecfb2d07 /src/window.h | |
parent | 341f3858087fc51cf14db2fa7f69bd147ecbcc57 (diff) | |
download | emacs-b74b839745c7a1a09e5f8d14069032a0d9d065c5.tar.gz |
(window_from_coordinates): Fix prototype.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index 5f76163231a..1cb91d3566e 100644 --- a/src/window.h +++ b/src/window.h @@ -378,7 +378,8 @@ EXFUN (Fwindow_live_p, 1); EXFUN (Fset_window_point, 2); extern Lisp_Object make_window P_ ((void)); extern void delete_window P_ ((Lisp_Object)); -extern Lisp_Object window_from_coordinates P_ ((struct frame *, int, int, int *, int)); +extern Lisp_Object window_from_coordinates P_ ((struct frame *, int, int, + enum window_part *, int)); EXFUN (Fwindow_dedicated_p, 1); extern int window_height P_ ((Lisp_Object)); extern int window_width P_ ((Lisp_Object)); |