From: Gerd Moellmann Date: Wed, 24 Oct 2001 11:13:05 +0000 (+0000) Subject: Change #ifdef GLYPH_DEBUG to #if. X-Git-Tag: emacs-21.2~474 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bbaff507f147493254567f8b1fad5e2a3d16a319;p=emacs.git Change #ifdef GLYPH_DEBUG to #if. --- diff --git a/src/xdisp.c b/src/xdisp.c index d98d6fc414c..5c8792edae0 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -9691,7 +9691,7 @@ try_cursor_movement (window, startp, scroll_step) struct frame *f = XFRAME (w->frame); int rc = CURSOR_MOVEMENT_CANNOT_BE_USED; -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG if (inhibit_try_cursor_movement) return rc; #endif @@ -10632,7 +10632,7 @@ try_window_reusing_current_matrix (w) struct glyph_row *start_row; int start_vpos, min_y, max_y; -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG if (inhibit_try_window_reusing) return 0; #endif @@ -11289,7 +11289,7 @@ try_window_id (w) struct text_pos start; int first_changed_charpos, last_changed_charpos; -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG if (inhibit_try_window_id) return 0; #endif @@ -14953,7 +14953,7 @@ Can be used to update submenus whose contents should vary."); "Non-nil means don't eval Lisp during redisplay."); inhibit_eval_during_redisplay = 0; -#ifdef GLYPH_DEBUG +#if GLYPH_DEBUG DEFVAR_BOOL ("inhibit-try-window-id", &inhibit_try_window_id, "Inhibit try_window_id display optimization."); inhibit_try_window_id = 0;