changeset 5941:c4cceb65fc5a

Fix comments.
author Karl Heuer <kwzh@gnu.org>
date Mon, 14 Feb 1994 19:30:48 +0000
parents e663f6626075
children c51e1ff87656
files src/indent.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;
 	    }
 	}