changeset 88430:6418a272b97e

* coding.c: Delete unused variables.
author Kenichi Handa <handa@m17n.org>
date Tue, 05 Mar 2002 00:08:50 +0000
parents 89eaf88b37b4
children d5ba4152bd1b
files src/coding.c
diffstat 1 files changed, 5 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Tue Mar 05 00:08:31 2002 +0000
+++ b/src/coding.c	Tue Mar 05 00:08:50 2002 +0000
@@ -1271,7 +1271,7 @@
 {
   unsigned char *src = coding->source + coding->consumed;
   unsigned char *src_end = coding->source + coding->src_bytes;
-  unsigned char *src_base, *surrogate_high_base;
+  unsigned char *src_base;
   int *charbuf = coding->charbuf;
   int *charbuf_end = charbuf + coding->charbuf_size;
   int consumed_chars = 0, consumed_chars_base;
@@ -1943,7 +1943,6 @@
   unsigned char *dst = coding->destination + coding->produced;
   unsigned char *dst_end = coding->destination + coding->dst_bytes;
   int safe_room = 8;
-  unsigned char *adjusted_dst_end =dst_end - 8;
   int produced_chars = 0;
   Lisp_Object attrs, eol_type, charset_list;
   int c;
@@ -4413,7 +4412,6 @@
      Lisp_Object coding_system;
      struct coding_system *coding;
 {
-  int id;
   Lisp_Object attrs;
   Lisp_Object eol_type;
   Lisp_Object coding_type;
@@ -4581,7 +4579,7 @@
 raw_text_coding_system (coding_system)
      Lisp_Object coding_system;
 {
-  Lisp_Object spec, attrs, coding_type;
+  Lisp_Object spec, attrs;
   Lisp_Object eol_type, raw_text_eol_type;
 
   spec = CODING_SYSTEM_SPEC (coding_system);
@@ -4616,7 +4614,6 @@
   if (VECTORP (eol_type))
     {
       Lisp_Object parent_spec;
-      Lisp_Object parent_attrs;
       Lisp_Object parent_eol_type;
 
       parent_spec
@@ -4763,7 +4760,6 @@
   unsigned char c;
   int total  = 0;
   int eol_seen = EOL_SEEN_NONE;
-  int first_eol_seen;
 
   attrs = CODING_ID_ATTRS (coding->id);
   coding_type = CODING_ATTR_TYPE (attrs);
@@ -4845,7 +4841,7 @@
      struct coding_system *coding;
      int eol_seen;
 {
-  Lisp_Object eol_type, coding_system;
+  Lisp_Object eol_type;
   
   eol_type = CODING_ID_EOL_TYPE (coding->id);
   if (eol_seen & EOL_SEEN_LF)
@@ -5576,7 +5572,6 @@
 encode_coding (coding)
      struct coding_system *coding;
 {
-  int error = 0;
   Lisp_Object attrs;
 
   attrs = CODING_ID_ATTRS (coding->id);
@@ -6286,7 +6281,6 @@
      Lisp_Object attrs;
 {
   Lisp_Object tail;
-  int id;
   struct charset *charset;
 
   for (tail = CODING_ATTR_CHARSET_LIST (attrs);
@@ -6693,7 +6687,7 @@
      Lisp_Object string, coding_system;
      int encodep;
 {
-  code_convert_string (string, coding_system, Qt, encodep, 0, 1);
+  return code_convert_string (string, coding_system, Qt, encodep, 0, 1);
 }
 
 
@@ -7349,7 +7343,7 @@
     {
       Lisp_Object initial, reg_usage, request, flags;
       struct charset *charset;
-      int i, id, max_id = -1;
+      int i, id;
 
       if (nargs < coding_arg_iso2022_max)
 	goto short_args;