(column_at_point): Use `CHAR_COLUMNS' instead of `XCHARSET_COLUMNS'
authortomo <tomo>
Fri, 10 Sep 1999 08:35:11 +0000 (08:35 +0000)
committertomo <tomo>
Fri, 10 Sep 1999 08:35:11 +0000 (08:35 +0000)
and `CHAR_CHARSET'.
(string_column_at_point): Likewise.
(Fmove_to_column): Likewise.

src/indent.c

index 8de057e..f72f020 100644 (file)
@@ -169,7 +169,7 @@ column_at_point (struct buffer *buf, Bufpos init_pos, int cur_col)
                     + displayed_glyphs->end_columns));
 #else /* XEmacs */
 #ifdef MULE
-         col += XCHARSET_COLUMNS (CHAR_CHARSET (c));
+         col += CHAR_COLUMNS (c);
 #else
          col ++;
 #endif /* MULE */
@@ -226,7 +226,7 @@ string_column_at_point (struct Lisp_String* s, Bufpos init_pos, int tab_width)
        break;
       else
 #ifdef MULE
-         col += XCHARSET_COLUMNS (CHAR_CHARSET (c));
+         col += CHAR_COLUMNS (c);
 #else
          col ++;
 #endif /* MULE */
@@ -456,7 +456,7 @@ Returns the actual column that it moved to.
                     + displayed_glyphs->end_columns));
 #else /* XEmacs */
 #ifdef MULE
-         col += XCHARSET_COLUMNS (CHAR_CHARSET (c));
+         col += CHAR_COLUMNS (c);
 #else
          col ++;
 #endif /* MULE */