aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-09-29 18:08:13 +0000
committerDave Love2003-09-29 18:08:13 +0000
commitcbb6a48ad01bf41f8435e581fc7d320973414749 (patch)
tree3d7695d84f952fc6684aa6dced98c2f2da90cfc9
parente714d5dc90be832ece46f6336161a0ff4c776306 (diff)
downloademacs-cbb6a48ad01bf41f8435e581fc7d320973414749.tar.gz
emacs-cbb6a48ad01bf41f8435e581fc7d320973414749.zip
(regex_compile): Remove unused var.
-rw-r--r--src/xdisp.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index b329dece25b..04e74f1e7e1 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -17176,10 +17176,9 @@ compute_overhangs_and_x (s, x, backward_p)
17176#define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \ 17176#define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
17177 do \ 17177 do \
17178 { \ 17178 { \
17179 int c, face_id; \ 17179 int face_id; \
17180 XChar2b *char2b; \ 17180 XChar2b *char2b; \
17181 \ 17181 \
17182 c = (row)->glyphs[area][START].u.ch; \
17183 face_id = (row)->glyphs[area][START].face_id; \ 17182 face_id = (row)->glyphs[area][START].face_id; \
17184 \ 17183 \
17185 s = (struct glyph_string *) alloca (sizeof *s); \ 17184 s = (struct glyph_string *) alloca (sizeof *s); \
@@ -17320,7 +17319,7 @@ draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
17320 int x; 17319 int x;
17321 struct glyph_row *row; 17320 struct glyph_row *row;
17322 enum glyph_row_area area; 17321 enum glyph_row_area area;
17323 int start, end; 17322 EMACS_INT start, end;
17324 enum draw_glyphs_face hl; 17323 enum draw_glyphs_face hl;
17325 int overlaps_p; 17324 int overlaps_p;
17326{ 17325{
@@ -18425,7 +18424,8 @@ x_insert_glyphs (start, len)
18425 int line_height, shift_by_width, shifted_region_width; 18424 int line_height, shift_by_width, shifted_region_width;
18426 struct glyph_row *row; 18425 struct glyph_row *row;
18427 struct glyph *glyph; 18426 struct glyph *glyph;
18428 int frame_x, frame_y, hpos; 18427 int frame_x, frame_y;
18428 EMACS_INT hpos;
18429 18429
18430 xassert (updated_window && updated_row); 18430 xassert (updated_window && updated_row);
18431 BLOCK_INPUT; 18431 BLOCK_INPUT;
@@ -18991,7 +18991,6 @@ display_and_set_cursor (w, on, hpos, vpos, x, y)
18991 int active_cursor; 18991 int active_cursor;
18992 struct glyph_matrix *current_glyphs; 18992 struct glyph_matrix *current_glyphs;
18993 struct glyph_row *glyph_row; 18993 struct glyph_row *glyph_row;
18994 struct glyph *glyph;
18995 18994
18996 /* This is pointless on invisible frames, and dangerous on garbaged 18995 /* This is pointless on invisible frames, and dangerous on garbaged
18997 windows and frames; in the latter case, the frame or window may 18996 windows and frames; in the latter case, the frame or window may
@@ -19009,7 +19008,6 @@ display_and_set_cursor (w, on, hpos, vpos, x, y)
19009 19008
19010 current_glyphs = w->current_matrix; 19009 current_glyphs = w->current_matrix;
19011 glyph_row = MATRIX_ROW (current_glyphs, vpos); 19010 glyph_row = MATRIX_ROW (current_glyphs, vpos);
19012 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
19013 19011
19014 /* If cursor row is not enabled, we don't really know where to 19012 /* If cursor row is not enabled, we don't really know where to
19015 display the cursor. */ 19013 display the cursor. */
@@ -19281,7 +19279,7 @@ cursor_in_mouse_face_p (w)
19281static int 19279static int
19282fast_find_position (w, charpos, hpos, vpos, x, y, stop) 19280fast_find_position (w, charpos, hpos, vpos, x, y, stop)
19283 struct window *w; 19281 struct window *w;
19284 int charpos; 19282 EMACS_INT charpos;
19285 int *hpos, *vpos, *x, *y; 19283 int *hpos, *vpos, *x, *y;
19286 Lisp_Object stop; 19284 Lisp_Object stop;
19287{ 19285{
@@ -19344,7 +19342,7 @@ fast_find_position (w, charpos, hpos, vpos, x, y, stop)
19344static int 19342static int
19345fast_find_position (w, pos, hpos, vpos, x, y, stop) 19343fast_find_position (w, pos, hpos, vpos, x, y, stop)
19346 struct window *w; 19344 struct window *w;
19347 int pos; 19345 EMACS_INT pos;
19348 int *hpos, *vpos, *x, *y; 19346 int *hpos, *vpos, *x, *y;
19349 Lisp_Object stop; 19347 Lisp_Object stop;
19350{ 19348{
@@ -19458,7 +19456,7 @@ fast_find_position (w, pos, hpos, vpos, x, y, stop)
19458static int 19456static int
19459fast_find_string_pos (w, pos, object, hpos, vpos, x, y, right_p) 19457fast_find_string_pos (w, pos, object, hpos, vpos, x, y, right_p)
19460 struct window *w; 19458 struct window *w;
19461 int pos; 19459 EMACS_INT pos;
19462 Lisp_Object object; 19460 Lisp_Object object;
19463 int *hpos, *vpos, *x, *y; 19461 int *hpos, *vpos, *x, *y;
19464 int right_p; 19462 int right_p;