comparison src/casefiddle.c @ 34969:d7e7fa35dd10

(casify_object): Remove unused variable `tolen'.
author Eli Zaretskii <eliz@gnu.org>
date Tue, 02 Jan 2001 14:06:38 +0000
parents 97029667b1a9
children 42b7a798ff79
comparison
equal deleted inserted replaced
34968:c8d0a552d56e 34969:d7e7fa35dd10
99 scan the rest in a more complex way. */ 99 scan the rest in a more complex way. */
100 if (i < len) 100 if (i < len)
101 { 101 {
102 /* The work is not yet finished because of a multibyte 102 /* The work is not yet finished because of a multibyte
103 character just encountered. */ 103 character just encountered. */
104 int fromlen, tolen, j_byte = i; 104 int fromlen, j_byte = i;
105 char *buf 105 char *buf
106 = (char *) alloca ((len - i) * MAX_MULTIBYTE_LENGTH + i); 106 = (char *) alloca ((len - i) * MAX_MULTIBYTE_LENGTH + i);
107 107
108 /* Copy data already handled. */ 108 /* Copy data already handled. */
109 bcopy (XSTRING (obj)->data, buf, i); 109 bcopy (XSTRING (obj)->data, buf, i);