comparison src/keymap.c @ 21244:50929073a0ba

Use STRING_BYTES and SET_STRING_BYTES.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 Mar 1998 07:06:14 +0000
parents 31bd04a792c2
children 8d9370825e85
comparison
equal deleted inserted replaced
21243:e82a4a4fa12a 21244:50929073a0ba
3024 /* Print the information for this character set. */ 3024 /* Print the information for this character set. */
3025 insert_string ("<"); 3025 insert_string ("<");
3026 tem2 = CHARSET_TABLE_INFO (i - 128, CHARSET_SHORT_NAME_IDX); 3026 tem2 = CHARSET_TABLE_INFO (i - 128, CHARSET_SHORT_NAME_IDX);
3027 if (STRINGP (tem2)) 3027 if (STRINGP (tem2))
3028 insert_from_string (tem2, 0, 0, XSTRING (tem2)->size, 3028 insert_from_string (tem2, 0, 0, XSTRING (tem2)->size,
3029 XSTRING (tem2)->size_byte, 0); 3029 STRING_BYTES (XSTRING (tem2)), 0);
3030 else 3030 else
3031 insert ("?", 1); 3031 insert ("?", 1);
3032 insert (">", 1); 3032 insert (">", 1);
3033 } 3033 }
3034 } 3034 }