Mercurial > hg > xemacs-beta
comparison src/window.c @ 195:a2f645c6b9f8 r20-3b24
Import from CVS: tag r20-3b24
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:59:05 +0200 |
parents | 3d6bfa290dbd |
children | eb5470882647 |
comparison
equal
deleted
inserted
replaced
194:2947057885e5 | 195:a2f645c6b9f8 |
---|---|
4590 saved_window_equal (struct saved_window *win1, struct saved_window *win2) | 4590 saved_window_equal (struct saved_window *win1, struct saved_window *win2) |
4591 { | 4591 { |
4592 return | 4592 return |
4593 EQ (win1->window, win2->window) && | 4593 EQ (win1->window, win2->window) && |
4594 EQ (win1->buffer, win2->buffer) && | 4594 EQ (win1->buffer, win2->buffer) && |
4595 !NILP (Fequal (win1->start, win2->start)) && | 4595 internal_equal (win1->start, win2->start, 0) && |
4596 !NILP (Fequal (win1->pointm, win2->pointm)) && | 4596 internal_equal (win1->pointm, win2->pointm, 0) && |
4597 !NILP (Fequal (win1->sb_point, win2->sb_point)) && | 4597 internal_equal (win1->sb_point, win2->sb_point, 0) && |
4598 !NILP (Fequal (win1->mark, win2->mark)) && | 4598 internal_equal (win1->mark, win2->mark, 0) && |
4599 win1->pixel_left == win2->pixel_left && | 4599 win1->pixel_left == win2->pixel_left && |
4600 win1->pixel_top == win2->pixel_top && | 4600 win1->pixel_top == win2->pixel_top && |
4601 win1->pixel_width == win2->pixel_width && | 4601 win1->pixel_width == win2->pixel_width && |
4602 win1->pixel_height == win2->pixel_height && | 4602 win1->pixel_height == win2->pixel_height && |
4603 win1->hscroll == win2->hscroll && | 4603 win1->hscroll == win2->hscroll && |