# HG changeset patch # User Karl Heuer # Date 761254248 0 # Node ID c4cceb65fc5a285fb26ad91b4b8e6c4e96242f73 # Parent e663f662607552a30b205b4a3578c333e964d48d Fix comments. diff -r e663f6626075 -r c4cceb65fc5a src/indent.c --- a/src/indent.c Mon Feb 14 14:28:22 1994 +0000 +++ b/src/indent.c Mon Feb 14 19:30:48 1994 +0000 @@ -414,7 +414,7 @@ window_internal_width (w) - 1 The `-1' accounts for the continuation-line backslashes; the rest - accounts for window borders if the window is split vertically, and + accounts for window borders if the window is split horizontally, and the scroll bars if the frame supports them. */ struct position * @@ -507,7 +507,7 @@ while (++pos < to && FETCH_CHAR (pos) != '\n'); } while (pos < to && position_indentation (pos + 1) >= selective); - pos--; + pos--; /* Reread the newline on the next pass. */ /* Allow for the " ..." that is displayed for them. */ if (selective_rlen) { @@ -523,7 +523,7 @@ vpos++; hpos = 0; hpos -= hscroll; - if (hscroll > 0) hpos++; /* Count the ! on column 0 */ + if (hscroll > 0) hpos++; /* Count the $ on column 0 */ tab_offset = 0; } }