]> git.eshelyaron.com Git - emacs.git/commitdiff
(encode_terminal_code): Remove unused var src_start.
authorKim F. Storm <storm@cua.dk>
Thu, 20 Oct 2005 15:03:58 +0000 (15:03 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 20 Oct 2005 15:03:58 +0000 (15:03 +0000)
src/term.c

index 2b4ea7e23a4d53da96a133d96a53ff0b36a9446e..e53e5f78306eb33b36d90d16753fdb0bc4b4a4e8 100644 (file)
@@ -816,7 +816,7 @@ encode_terminal_code (src, src_len, coding)
      int src_len;
      struct coding_system *coding;
 {
-  struct glyph *src_start = src, *src_end = src + src_len;
+  struct glyph *src_end = src + src_len;
   register GLYPH g;
   unsigned char *buf;
   int nchars, nbytes, required;
@@ -901,7 +901,7 @@ encode_terminal_code (src, src_len, coding)
   if (SYMBOLP (coding->pre_write_conversion)
       && ! NILP (Ffboundp (coding->pre_write_conversion)))
     {
-      run_pre_write_conversin_on_c_str (&encode_terminal_buf, 
+      run_pre_write_conversin_on_c_str (&encode_terminal_buf,
                                        &encode_terminal_bufsize,
                                        nchars, nbytes, coding);
       nchars = coding->produced_char;
@@ -1818,7 +1818,7 @@ produce_stretch_glyph (it)
           && calc_pixel_width_or_height (&tem, it, prop, 0, 1, &align_to))
     {
       if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
-       align_to = (align_to < 0 
+       align_to = (align_to < 0
                    ? 0
                    : align_to - window_box_left_offset (it->w, TEXT_AREA));
       else if (align_to < 0)