diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-03 05:05:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-03 05:05:12 +0000 |
commit | 0132c70c047bc80b9bb13250041004276ca3e5b1 (patch) | |
tree | c81952d438d60a6e509ead89959e05392246f13f /src/cmds.c | |
parent | 502add23f1e6d396208ff04042f1c533cb152538 (diff) | |
download | emacs-0132c70c047bc80b9bb13250041004276ca3e5b1.tar.gz |
(Fforward_line): Pass new arg to scan_buffer.
Diffstat (limited to 'src/cmds.c')
-rw-r--r-- | src/cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index f405413913c..e6ceeeee0a5 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -105,7 +105,7 @@ With positive ARG, a non-empty line at the end counts as one line\n\ } negp = count <= 0; - pos = scan_buffer ('\n', pos2, count - negp, &shortage); + pos = scan_buffer ('\n', pos2, count - negp, &shortage, 1); if (shortage > 0 && (negp || (ZV > BEGV |