From: Jim Blandy Date: Tue, 11 Oct 1994 19:39:03 +0000 (+0000) Subject: (display_scan_buffer): Pass the correct number of arguments to X-Git-Tag: emacs-19.34~6403 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ae474ea9cf740de466c561bc55210b21c2face89;p=emacs.git (display_scan_buffer): Pass the correct number of arguments to scan_buffer. --- 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) check only for newlines. */ if (! (!NILP (current_buffer->selective_display) && !INTEGERP (current_buffer->selective_display))) - return scan_buffer ('\n', start, count, shortage, 0); + return scan_buffer ('\n', start, 0, count, shortage, 0); /* The code that follows is like scan_buffer but checks for either newline or carriage return. */