diff options
| author | Jim Blandy | 1994-10-11 19:39:03 +0000 |
|---|---|---|
| committer | Jim Blandy | 1994-10-11 19:39:03 +0000 |
| commit | ae474ea9cf740de466c561bc55210b21c2face89 (patch) | |
| tree | 45018960b02c3e236d8bc81e44dad9ddd85bd576 /src | |
| parent | 0d548e5d7bc70e6e65f260b6c55a5b47ecedd72b (diff) | |
| download | emacs-ae474ea9cf740de466c561bc55210b21c2face89.tar.gz emacs-ae474ea9cf740de466c561bc55210b21c2face89.zip | |
(display_scan_buffer): Pass the correct number of arguments to
scan_buffer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 9b476a7f29b..5d4c579b905 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -3282,7 +3282,7 @@ display_scan_buffer (start, count, shortage) | |||
| 3282 | check only for newlines. */ | 3282 | check only for newlines. */ |
| 3283 | if (! (!NILP (current_buffer->selective_display) | 3283 | if (! (!NILP (current_buffer->selective_display) |
| 3284 | && !INTEGERP (current_buffer->selective_display))) | 3284 | && !INTEGERP (current_buffer->selective_display))) |
| 3285 | return scan_buffer ('\n', start, count, shortage, 0); | 3285 | return scan_buffer ('\n', start, 0, count, shortage, 0); |
| 3286 | 3286 | ||
| 3287 | /* The code that follows is like scan_buffer | 3287 | /* The code that follows is like scan_buffer |
| 3288 | but checks for either newline or carriage return. */ | 3288 | but checks for either newline or carriage return. */ |