comparison src/redisplay-tty.c @ 251:677f6a0ee643 r20-5b24

Import from CVS: tag r20-5b24
author cvs
date Mon, 13 Aug 2007 10:19:59 +0200
parents 41ff10fd062f
children 8efd647ea9ca
comparison
equal deleted inserted replaced
250:f385a461c9aa 251:677f6a0ee643
103 103
104 tty's don't have fonts (that we use at least), so everything is 104 tty's don't have fonts (that we use at least), so everything is
105 considered to be fixed width. In other words, we just return len. 105 considered to be fixed width. In other words, we just return len.
106 ****************************************************************************/ 106 ****************************************************************************/
107 static int 107 static int
108 tty_text_width (struct face_cachel *cachel, CONST Emchar *str, 108 tty_text_width (struct frame *f, struct face_cachel *cachel, CONST Emchar *str,
109 Charcount len) 109 Charcount len)
110 { 110 {
111 return emchar_string_displayed_columns (str, len); 111 return emchar_string_displayed_columns (str, len);
112 } 112 }
113 113