From: Stefan Monnier Date: Fri, 21 Sep 2007 09:03:41 +0000 (+0000) Subject: (allocate_terminal): Declare. X-Git-Tag: emacs-pretest-23.0.90~10749 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=273f164cc4d8c1ad649442f6459c698ccdde3c3c;p=emacs.git (allocate_terminal): Declare. --- diff --git a/src/ChangeLog b/src/ChangeLog index 0c160c1560e..859409092b0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2007-09-21 Stefan Monnier + * lisp.h (allocate_terminal): Declare. + * window.c (candidate_window_p): Consider frames that are being placed by the user as somewhere between visible and iconified. (window_loop): Prefer windows on the current frame. diff --git a/src/lisp.h b/src/lisp.h index 2b0ccdb9b07..d5adb8f9e49 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2606,6 +2606,7 @@ extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void)); extern struct window *allocate_window P_ ((void)); extern struct frame *allocate_frame P_ ((void)); extern struct Lisp_Process *allocate_process P_ ((void)); +extern struct terminal *allocate_terminal P_ ((void)); extern int gc_in_progress; extern int abort_on_gc; extern Lisp_Object make_float P_ ((double));