diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-12-28 10:08:46 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-12-28 10:08:46 +0000 |
commit | 2d5912c169a99a491d4384b50729dfdbab8e2f40 (patch) | |
tree | 75d1225816addeb3da99d024951ac5ec6d5b54aa /src/dispnew.c | |
parent | 1c3478b085e2e12ef10b61c2e96915410745e82c (diff) | |
download | emacs-2d5912c169a99a491d4384b50729dfdbab8e2f40.tar.gz |
Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 87e7f689bb7..ed512a03ea9 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -1304,7 +1304,7 @@ assign_row (to, from) is non-zero if the glyph memory of WINDOW_ROW is part of the glyph memory of FRAME_ROW. */ -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG static int glyph_row_slice_p (window_row, frame_row) @@ -3773,7 +3773,7 @@ update_frame (f, force_p, inhibit_hairy_id_p) fflush (stdout); /* Check window matrices for lost pointers. */ -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG check_window_matrix_pointers (root_window); add_frame_display_history (f, paused_p); #endif @@ -4094,7 +4094,7 @@ update_window (w, force_p) else paused_p = 1; -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG add_window_display_history (w, w->current_matrix->method, paused_p); #endif @@ -6482,7 +6482,7 @@ syms_of_display () defsubr (&Sinternal_show_cursor); defsubr (&Sinternal_show_cursor_p); -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG defsubr (&Sdump_redisplay_history); #endif |