diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-07-11 15:45:24 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-07-11 15:45:24 +0000 |
commit | 8ee5b6a3963659c95e124efda55c11dbe045957d (patch) | |
tree | 7d7f982e6f94452e316a3993557c1cffa8c084fe /src/xdisp.c | |
parent | d0e2444ef8c7d4d713a863e32350c88200913ae5 (diff) | |
download | emacs-8ee5b6a3963659c95e124efda55c11dbe045957d.tar.gz emacs-8ee5b6a3963659c95e124efda55c11dbe045957d.tar.bz2 emacs-8ee5b6a3963659c95e124efda55c11dbe045957d.zip |
(try_cursor_movement): Prevent a warning from GCC 3.0.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index f0c919fecc0..fb148ee8200 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -9579,7 +9579,7 @@ try_cursor_movement (window, startp, scroll_step) || current_buffer != XMARKER (Voverlay_arrow_position)->buffer)) { int this_scroll_margin; - struct glyph_row *row; + struct glyph_row *row = NULL; #if GLYPH_DEBUG debug_method_add (w, "cursor movement"); |