comparison src/coding.c @ 51231:b020f1a52615

(find_safe_codings): Remove unused var `i'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 25 May 2003 17:41:21 +0000
parents e610d367508d
children e723bcb43569
comparison
equal deleted inserted replaced
51230:1e9eeff3616b 51231:b020f1a52615
1 /* Coding system handler (conversion, detection, and etc). 1 /* Coding system handler (conversion, detection, and etc).
2 Copyright (C) 1995, 1997, 1998, 2002 Electrotechnical Laboratory, JAPAN. 2 Copyright (C) 1995,97,1998,2002,2003 Electrotechnical Laboratory, JAPAN.
3 Licensed to the Free Software Foundation. 3 Licensed to the Free Software Foundation.
4 Copyright (C) 2001,2002,2003 Free Software Foundation, Inc. 4 Copyright (C) 2001,2002,2003 Free Software Foundation, Inc.
5 5
6 This file is part of GNU Emacs. 6 This file is part of GNU Emacs.
7 7
6431 find_safe_codings (p, pend, safe_codings, work_table, single_byte_char_found) 6431 find_safe_codings (p, pend, safe_codings, work_table, single_byte_char_found)
6432 unsigned char *p, *pend; 6432 unsigned char *p, *pend;
6433 Lisp_Object safe_codings, work_table; 6433 Lisp_Object safe_codings, work_table;
6434 int *single_byte_char_found; 6434 int *single_byte_char_found;
6435 { 6435 {
6436 int c, len, i; 6436 int c, len;
6437 Lisp_Object val, ch; 6437 Lisp_Object val, ch;
6438 Lisp_Object prev, tail; 6438 Lisp_Object prev, tail;
6439 6439
6440 while (p < pend) 6440 while (p < pend)
6441 { 6441 {