diff options
| author | Steven Tamm | 2005-02-03 07:09:43 +0000 |
|---|---|---|
| committer | Steven Tamm | 2005-02-03 07:09:43 +0000 |
| commit | f6c62d96905001cee7e45e1e4e621fdcda9dabbf (patch) | |
| tree | b249919e76eed2f7ca2b8589770ce71357f9427a /src/macfns.c | |
| parent | b471b8e98c6e121e77fde34c55558ac419712ba6 (diff) | |
| download | emacs-f6c62d96905001cee7e45e1e4e621fdcda9dabbf.tar.gz emacs-f6c62d96905001cee7e45e1e4e621fdcda9dabbf.zip | |
* macfns.c (unwind_create_frame): Fixing compile error due to
xassert being uncondition, but predicate is.
Diffstat (limited to 'src/macfns.c')
| -rw-r--r-- | src/macfns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/macfns.c b/src/macfns.c index 33da9091575..416522b49b9 100644 --- a/src/macfns.c +++ b/src/macfns.c | |||
| @@ -2527,9 +2527,11 @@ unwind_create_frame (frame) | |||
| 2527 | 2527 | ||
| 2528 | x_free_frame_resources (f); | 2528 | x_free_frame_resources (f); |
| 2529 | 2529 | ||
| 2530 | #if GLYPH_DEBUG | ||
| 2530 | /* Check that reference counts are indeed correct. */ | 2531 | /* Check that reference counts are indeed correct. */ |
| 2531 | xassert (dpyinfo->reference_count == dpyinfo_refcount); | 2532 | xassert (dpyinfo->reference_count == dpyinfo_refcount); |
| 2532 | xassert (dpyinfo->image_cache->refcount == image_cache_refcount); | 2533 | xassert (dpyinfo->image_cache->refcount == image_cache_refcount); |
| 2534 | #endif | ||
| 2533 | return Qt; | 2535 | return Qt; |
| 2534 | } | 2536 | } |
| 2535 | 2537 | ||