diff options
| author | Karl Heuer | 1994-04-05 23:49:15 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-05 23:49:15 +0000 |
| commit | e37f06d7db86fad8daff7b1cba12dda2199556a6 (patch) | |
| tree | c051be4ddbc83402d5869d478d06bb7dc82fffd7 /src/window.c | |
| parent | 88af3af464269760aa7bb6975681cdfbde9e27e1 (diff) | |
| download | emacs-e37f06d7db86fad8daff7b1cba12dda2199556a6.tar.gz emacs-e37f06d7db86fad8daff7b1cba12dda2199556a6.zip | |
Add window argument on calls to compute_motion.
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 b253f7d612c..834d3784d6b 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -223,7 +223,7 @@ POS defaults to point; WINDOW, to the selected window.") | |||
| 223 | posval = *compute_motion (top, 0, (hscroll ? 1 - hscroll : 0), | 223 | posval = *compute_motion (top, 0, (hscroll ? 1 - hscroll : 0), |
| 224 | posint, height, 0, | 224 | posint, height, 0, |
| 225 | window_internal_width (w) - 1, | 225 | window_internal_width (w) - 1, |
| 226 | hscroll, 0); | 226 | hscroll, 0, w); |
| 227 | 227 | ||
| 228 | return posval.vpos < height ? Qt : Qnil; | 228 | return posval.vpos < height ? Qt : Qnil; |
| 229 | } | 229 | } |