Mercurial > hg > xemacs-beta
comparison src/indent.c @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | 859a2309aef8 |
children | 538048ae2ab8 |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
164 pos, dp, 0, col, 0, 0, 0); | 164 pos, dp, 0, col, 0, 0, 0); |
165 col += (displayed_glyphs->columns | 165 col += (displayed_glyphs->columns |
166 - (displayed_glyphs->begin_columns | 166 - (displayed_glyphs->begin_columns |
167 + displayed_glyphs->end_columns)); | 167 + displayed_glyphs->end_columns)); |
168 #else /* XEmacs */ | 168 #else /* XEmacs */ |
169 #ifdef MULE | |
170 col += XCHARSET_COLUMNS (CHAR_CHARSET (c)); | |
171 #else | |
169 col ++; | 172 col ++; |
173 #endif /* MULE */ | |
170 #endif /* XEmacs */ | 174 #endif /* XEmacs */ |
171 } | 175 } |
172 } | 176 } |
173 | 177 |
174 if (tab_seen) | 178 if (tab_seen) |
398 pos, dp, 0, col, 0, 0, 0); | 402 pos, dp, 0, col, 0, 0, 0); |
399 col += (displayed_glyphs->columns | 403 col += (displayed_glyphs->columns |
400 - (displayed_glyphs->begin_columns | 404 - (displayed_glyphs->begin_columns |
401 + displayed_glyphs->end_columns)); | 405 + displayed_glyphs->end_columns)); |
402 #else /* XEmacs */ | 406 #else /* XEmacs */ |
407 #ifdef MULE | |
408 col += XCHARSET_COLUMNS (CHAR_CHARSET (c)); | |
409 #else | |
403 col ++; | 410 col ++; |
411 #endif /* MULE */ | |
404 #endif /* XEmacs */ | 412 #endif /* XEmacs */ |
405 } | 413 } |
406 | 414 |
407 pos++; | 415 pos++; |
408 } | 416 } |