# HG changeset patch # User Karl Heuer # Date 761255076 0 # Node ID 35526ee8b790de17229e0c8d38db85baa8af5ef1 # Parent c51e1ff87656ba4987e805cb339d2c477f27aa52 (indented_beyond_p): New function. (compute_motion, vmotion): Use it to treat blank lines specially in selective display. diff -r c51e1ff87656 -r 35526ee8b790 src/indent.c --- a/src/indent.c Mon Feb 14 19:42:30 1994 +0000 +++ b/src/indent.c Mon Feb 14 19:44:36 1994 +0000 @@ -271,6 +271,18 @@ } } } + +/* Test whether the line beginning at POS is indented beyond COLUMN. + Blank lines are treated as if they had the same indentation as the + preceding line. */ +int +indented_beyond_p (pos, column) + int pos, column; +{ + while (pos > BEGV && FETCH_CHAR (pos) == '\n') + pos = find_next_newline (pos - 1, -1); + return (position_indentation (pos) >= column); +} DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, 0, "Move point to column COLUMN in the current line.\n\ @@ -499,14 +511,14 @@ } else if (c == '\n') { - if (selective > 0 && position_indentation (pos + 1) >= selective) + if (selective > 0 && indented_beyond_p (pos + 1, selective)) { /* Skip any number of invisible lines all at once */ do { while (++pos < to && FETCH_CHAR (pos) != '\n'); } - while (pos < to && position_indentation (pos + 1) >= selective); + while (pos < to && indented_beyond_p (pos + 1, selective)); pos--; /* Reread the newline on the next pass. */ /* Allow for the " ..." that is displayed for them. */ if (selective_rlen) @@ -648,7 +660,7 @@ prevline = find_next_newline (from, -1); while (prevline > BEGV && ((selective > 0 - && position_indentation (prevline) >= selective) + && indented_beyond_p (prevline, selective)) #ifdef USE_TEXT_PROPERTIES /* watch out for newlines with `invisible' property */ || ! NILP (Fget_text_property (XFASTINT (prevline), @@ -685,7 +697,7 @@ prevline = find_next_newline (prevline - 1, -1); if (prevline == BEGV || ((selective <= 0 - || position_indentation (prevline) < selective) + || ! indented_beyond_p (prevline, selective)) #ifdef USE_TEXT_PROPERTIES /* watch out for newlines with `invisible' property */ && NILP (Fget_text_property (XFASTINT (prevline),