aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispnew.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index a35ded7e567..93cf40b0203 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3383,7 +3383,7 @@ rect_intersect (struct rect *r, struct rect r1, struct rect r2)
3383 3383
3384/* Return the absolute position of frame F in *X and *Y. */ 3384/* Return the absolute position of frame F in *X and *Y. */
3385 3385
3386static void 3386void
3387frame_pos_abs (struct frame *f, int *x, int *y) 3387frame_pos_abs (struct frame *f, int *x, int *y)
3388{ 3388{
3389 *x = *y = 0; 3389 *x = *y = 0;
@@ -3423,7 +3423,7 @@ max_child_z_order (struct frame *parent)
3423 3423
3424/* Return true if F1 is an ancestor of F2. */ 3424/* Return true if F1 is an ancestor of F2. */
3425 3425
3426static bool 3426bool
3427is_frame_ancestor (struct frame *f1, struct frame *f2) 3427is_frame_ancestor (struct frame *f1, struct frame *f2)
3428{ 3428{
3429 for (struct frame *f = FRAME_PARENT_FRAME (f2); f; f = FRAME_PARENT_FRAME (f)) 3429 for (struct frame *f = FRAME_PARENT_FRAME (f2); f; f = FRAME_PARENT_FRAME (f))