diff options
| author | Karl Heuer | 1996-09-01 19:15:05 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-09-01 19:15:05 +0000 |
| commit | 6ec8bbd20d14dadb850f993d828b42bb97deba32 (patch) | |
| tree | 19f01d5251cd6d478933a5f562ba985bf5c3b117 /src/window.c | |
| parent | 7003b258300d0e575da8009e6f017b6c19aabacb (diff) | |
| download | emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.tar.gz emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.zip | |
Change all references from point to PT.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index c27991154ba..19fd3802e82 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -2935,7 +2935,7 @@ redraws with point in the center of the current window.") | |||
| 2935 | if (XINT (arg) < 0) | 2935 | if (XINT (arg) < 0) |
| 2936 | XSETINT (arg, XINT (arg) + ht); | 2936 | XSETINT (arg, XINT (arg) + ht); |
| 2937 | 2937 | ||
| 2938 | pos = *vmotion (point, - XINT (arg), w); | 2938 | pos = *vmotion (PT, - XINT (arg), w); |
| 2939 | 2939 | ||
| 2940 | Fset_marker (w->start, make_number (pos.bufpos), w->buffer); | 2940 | Fset_marker (w->start, make_number (pos.bufpos), w->buffer); |
| 2941 | w->start_at_line_beg = ((pos.bufpos == BEGV | 2941 | w->start_at_line_beg = ((pos.bufpos == BEGV |