summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-10-11 20:41:13 +0000
committerRichard M. Stallman <rms@gnu.org>1992-10-11 20:41:13 +0000
commit2c22f404fb32f071cbef14f73461b79c56f71299 (patch)
treea00c23957dae325ccc92b37bf3a9d027b39af5a1 /src/syntax.c
parentff75e76505ed04ab376411b6d35ecd9817abc71d (diff)
downloademacs-2c22f404fb32f071cbef14f73461b79c56f71299.tar.gz
(find_defun_start): scan_buffer returns start of line;
no need to advance over newline.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 6c7819a8cbd..3bb9e2956cc 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -82,9 +82,6 @@ find_defun_start (pos)
/* Back up to start of line. */
tem = scan_buffer ('\n', pos, -1, &shortage);
- /* If we found a newline, we moved back over it, so advance fwd past it. */
- if (shortage == 0)
- tem++;
while (tem > BEGV)
{
@@ -93,8 +90,6 @@ find_defun_start (pos)
break;
/* Move to beg of previous line. */
tem = scan_buffer ('\n', tem, -2, &shortage);
- if (shortage == 0)
- tem++;
}
/* Record what we found, for the next try. */