diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c index 10d4a594f42..7a8995b9392 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -631,7 +631,7 @@ being displayed, perhaps because the line was continued within it.\n\ | |||
| 631 | If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.\n\ | 631 | If OFFSETS is nil, HSCROLL and TAB-OFFSET are assumed to be zero.\n\ |
| 632 | \n\ | 632 | \n\ |
| 633 | The value is a list of five elements:\n\ | 633 | The value is a list of five elements:\n\ |
| 634 | (POS VPOS HPOS PREVHPOS CONTIN)\n\ | 634 | (POS HPOS VPOS PREVHPOS CONTIN)\n\ |
| 635 | POS is the buffer position where the scan stopped.\n\ | 635 | POS is the buffer position where the scan stopped.\n\ |
| 636 | VPOS is the vertical position where the scan stopped.\n\ | 636 | VPOS is the vertical position where the scan stopped.\n\ |
| 637 | HPOS is the horizontal position where the scan stopped.\n\ | 637 | HPOS is the horizontal position where the scan stopped.\n\ |
| @@ -679,9 +679,9 @@ visible section of the buffer, and pass LINE and COL as TOPOS.") | |||
| 679 | XINT (width), hscroll, tab_offset); | 679 | XINT (width), hscroll, tab_offset); |
| 680 | 680 | ||
| 681 | XFASTINT (bufpos) = pos->bufpos; | 681 | XFASTINT (bufpos) = pos->bufpos; |
| 682 | XFASTINT (hpos) = pos->hpos; | 682 | XSET (hpos, Lisp_Int, pos->hpos); |
| 683 | XSET (vpos, Lisp_Int, pos->vpos); | 683 | XSET (vpos, Lisp_Int, pos->vpos); |
| 684 | XFASTINT (prevhpos) = pos->prevhpos; | 684 | XSET (prevhpos, Lisp_Int, pos->prevhpos); |
| 685 | 685 | ||
| 686 | return Fcons (bufpos, | 686 | return Fcons (bufpos, |
| 687 | Fcons (hpos, | 687 | Fcons (hpos, |