aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-02-14 19:30:48 +0000
committerKarl Heuer1994-02-14 19:30:48 +0000
commit7e7a76b5938f813386f098c7d5946de37cf4c341 (patch)
tree826a65fad0d52e0185e1c01bb93e1f25e76d3e0a /src
parent1a0d8c8069c6e465c25aa442366fdf07fff37365 (diff)
downloademacs-7e7a76b5938f813386f098c7d5946de37cf4c341.tar.gz
emacs-7e7a76b5938f813386f098c7d5946de37cf4c341.zip
Fix comments.
Diffstat (limited to 'src')
-rw-r--r--src/indent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c
index e7f852e7bf9..fcc7fc431f1 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -414,7 +414,7 @@ struct position val_compute_motion;
414 window_internal_width (w) - 1 414 window_internal_width (w) - 1
415 415
416 The `-1' accounts for the continuation-line backslashes; the rest 416 The `-1' accounts for the continuation-line backslashes; the rest
417 accounts for window borders if the window is split vertically, and 417 accounts for window borders if the window is split horizontally, and
418 the scroll bars if the frame supports them. */ 418 the scroll bars if the frame supports them. */
419 419
420struct position * 420struct position *
@@ -507,7 +507,7 @@ compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, ta
507 while (++pos < to && FETCH_CHAR (pos) != '\n'); 507 while (++pos < to && FETCH_CHAR (pos) != '\n');
508 } 508 }
509 while (pos < to && position_indentation (pos + 1) >= selective); 509 while (pos < to && position_indentation (pos + 1) >= selective);
510 pos--; 510 pos--; /* Reread the newline on the next pass. */
511 /* Allow for the " ..." that is displayed for them. */ 511 /* Allow for the " ..." that is displayed for them. */
512 if (selective_rlen) 512 if (selective_rlen)
513 { 513 {
@@ -523,7 +523,7 @@ compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, ta
523 vpos++; 523 vpos++;
524 hpos = 0; 524 hpos = 0;
525 hpos -= hscroll; 525 hpos -= hscroll;
526 if (hscroll > 0) hpos++; /* Count the ! on column 0 */ 526 if (hscroll > 0) hpos++; /* Count the $ on column 0 */
527 tab_offset = 0; 527 tab_offset = 0;
528 } 528 }
529 } 529 }