# HG changeset patch # User Karl Heuer # Date 763964317 0 # Node ID 5ef02598a0ad35d0c72f183455a32b43036212a5 # Parent 96ec63c4a3478a02c7b763a403376595af297c5d (compute_motion): Doc fixes. diff -r 96ec63c4a347 -r 5ef02598a0ad src/indent.c --- a/src/indent.c Fri Mar 18 03:38:25 1994 +0000 +++ b/src/indent.c Fri Mar 18 04:18:37 1994 +0000 @@ -401,6 +401,11 @@ and vpos give its cartesian location. I'm not clear on what the other members are. + Note that FROMHPOS and TOHPOS should be expressed in real screen + columns, taking HSCROLL and the truncation glyph at the left margin + into account. That is, beginning-of-line moves you to the hpos + -HSCROLL + (HSCROLL > 0). + For example, to find the buffer position of column COL of line LINE of a certain window, pass the window's starting location as FROM and the window's upper-left coordinates as FROMVPOS and FROMHPOS. @@ -422,12 +427,12 @@ FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (WINDOW_FRAME (window))) and frame_width = FRAME_WIDTH (XFRAME (window->frame)) - Or, - window_internal_width (w) - 1 + Or you can let window_internal_width do this all for you, and write: + window_internal_width (w) - 1 The `-1' accounts for the continuation-line backslashes; the rest accounts for window borders if the window is split horizontally, and - the scroll bars if the frame supports them. */ + the scroll bars if they are turned on. */ struct position * compute_motion (from, fromvpos, fromhpos, to, tovpos, tohpos, width, hscroll, tab_offset) @@ -537,7 +542,7 @@ vpos++; hpos = 0; hpos -= hscroll; - if (hscroll > 0) hpos++; /* Count the $ on column 0 */ + if (hscroll > 0) hpos++; /* Truncation glyph on column 0 */ tab_offset = 0; } }