diff options
| author | Richard M. Stallman | 1994-02-03 05:05:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-03 05:05:12 +0000 |
| commit | 0132c70c047bc80b9bb13250041004276ca3e5b1 (patch) | |
| tree | c81952d438d60a6e509ead89959e05392246f13f /src/cmds.c | |
| parent | 502add23f1e6d396208ff04042f1c533cb152538 (diff) | |
| download | emacs-0132c70c047bc80b9bb13250041004276ca3e5b1.tar.gz emacs-0132c70c047bc80b9bb13250041004276ca3e5b1.zip | |
(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\ | |||
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | negp = count <= 0; | 107 | negp = count <= 0; |
| 108 | pos = scan_buffer ('\n', pos2, count - negp, &shortage); | 108 | pos = scan_buffer ('\n', pos2, count - negp, &shortage, 1); |
| 109 | if (shortage > 0 | 109 | if (shortage > 0 |
| 110 | && (negp | 110 | && (negp |
| 111 | || (ZV > BEGV | 111 | || (ZV > BEGV |