Mercurial > emacs
comparison src/dispnew.c @ 46293:1fb8f75062c6
Use macro SPECPDL_INDEX.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 11 Jul 2002 14:18:02 +0000 |
parents | 01b93e5e53a7 |
children | 40db0673e6f0 |
comparison
equal
deleted
inserted
replaced
46292:712d0161e499 | 46293:1fb8f75062c6 |
---|---|
5926 change_frame_size_1 (f, newheight, newwidth, pretend, delay, safe) | 5926 change_frame_size_1 (f, newheight, newwidth, pretend, delay, safe) |
5927 register struct frame *f; | 5927 register struct frame *f; |
5928 int newheight, newwidth, pretend, delay, safe; | 5928 int newheight, newwidth, pretend, delay, safe; |
5929 { | 5929 { |
5930 int new_frame_window_width; | 5930 int new_frame_window_width; |
5931 int count = specpdl_ptr - specpdl; | 5931 int count = SPECPDL_INDEX (); |
5932 | 5932 |
5933 /* If we can't deal with the change now, queue it for later. */ | 5933 /* If we can't deal with the change now, queue it for later. */ |
5934 if (delay || (redisplaying_p && !safe)) | 5934 if (delay || (redisplaying_p && !safe)) |
5935 { | 5935 { |
5936 FRAME_NEW_HEIGHT (f) = newheight; | 5936 FRAME_NEW_HEIGHT (f) = newheight; |