# HG changeset patch # User Richard M. Stallman # Date 1026409129 0 # Node ID ebb83f095b2ad789349f0315c9e28f5445228bf1 # Parent 4b3986c48905421bcbe9ac7eff180b89120ccd62 (last_known_column): Declare as double, not float. (current_column, current_column_1, string_display_width) (position_indentation): Return `double'. (indented_beyond_p): Arg `column' is `double'. Callers changed. diff -r 4b3986c48905 -r ebb83f095b2a src/indent.c --- a/src/indent.c Thu Jul 11 17:36:07 2002 +0000 +++ b/src/indent.c Thu Jul 11 17:38:49 2002 +0000 @@ -47,7 +47,7 @@ Some things in set last_known_column_point to -1 to mark the memorized value as invalid. */ -float last_known_column; +double last_known_column; /* Value of point when current_column was called. */ @@ -57,8 +57,8 @@ int last_known_column_modified; -static float current_column_1 P_ ((void)); -static float position_indentation P_ ((int)); +static double current_column_1 P_ ((void)); +static double position_indentation P_ ((int)); /* Cache of beginning of line found by the last call of current_column. */ @@ -355,7 +355,7 @@ last_known_column_point = 0; } -float +double current_column () { register int col; @@ -502,7 +502,7 @@ This function handles characters that are invisible due to text properties or overlays. */ -static float +static double current_column_1 () { register int tab_width = XINT (current_buffer->tab_width); @@ -652,7 +652,7 @@ If BEG is nil, that stands for the beginning of STRING. If END is nil, that stands for the end of STRING. */ -static float +static double string_display_width (string, beg, end) Lisp_Object string, beg, end; { @@ -778,7 +778,7 @@ } -static float position_indentation P_ ((int)); +static double position_indentation P_ ((int)); DEFUN ("current-indentation", Fcurrent_indentation, Scurrent_indentation, 0, 0, 0, @@ -797,7 +797,7 @@ return val; } -static float +static double position_indentation (pos_byte) register int pos_byte; { @@ -890,9 +890,9 @@ int indented_beyond_p (pos, pos_byte, column) int pos, pos_byte; - float column; + double column; { - float val; + double val; int opoint = PT, opoint_byte = PT_BYTE; SET_PT_BOTH (pos, pos_byte); @@ -1612,7 +1612,7 @@ { if (selective > 0 && indented_beyond_p (pos, pos_byte, - (float) selective)) /* iftc */ + (double) selective)) /* iftc */ { /* If (pos == to), we don't have to take care of selective display. */ @@ -1628,7 +1628,7 @@ } while (pos < to && indented_beyond_p (pos, pos_byte, - (float) selective)); /* iftc */ + (double) selective)); /* iftc */ /* Allow for the " ..." that is displayed for them. */ if (selective_rlen) { @@ -1878,7 +1878,7 @@ && ((selective > 0 && indented_beyond_p (XFASTINT (prevline), CHAR_TO_BYTE (XFASTINT (prevline)), - (float) selective)) /* iftc */ + (double) selective)) /* iftc */ /* watch out for newlines with `invisible' property */ || (propval = Fget_char_property (prevline, Qinvisible, @@ -1938,7 +1938,7 @@ && ((selective > 0 && indented_beyond_p (XFASTINT (prevline), CHAR_TO_BYTE (XFASTINT (prevline)), - (float) selective)) /* iftc */ + (double) selective)) /* iftc */ /* watch out for newlines with `invisible' property */ || (propval = Fget_char_property (prevline, Qinvisible, text_prop_object),