diff options
| author | Richard M. Stallman | 1992-10-11 20:41:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-11 20:41:13 +0000 |
| commit | f77ffc3d778ad4ab7bb79b22f9eb74b4d0622376 (patch) | |
| tree | 0a49ae4c985b1ac49d1d4d3af995cb97a2f74273 /src | |
| parent | 6fb48933f705a221df01d5fbcc700c18b20210d6 (diff) | |
| download | emacs-f77ffc3d778ad4ab7bb79b22f9eb74b4d0622376.tar.gz emacs-f77ffc3d778ad4ab7bb79b22f9eb74b4d0622376.zip | |
(find_defun_start): scan_buffer returns start of line;
no need to advance over newline.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 5 |
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) | |||
| 82 | 82 | ||
| 83 | /* Back up to start of line. */ | 83 | /* Back up to start of line. */ |
| 84 | tem = scan_buffer ('\n', pos, -1, &shortage); | 84 | tem = scan_buffer ('\n', pos, -1, &shortage); |
| 85 | /* If we found a newline, we moved back over it, so advance fwd past it. */ | ||
| 86 | if (shortage == 0) | ||
| 87 | tem++; | ||
| 88 | 85 | ||
| 89 | while (tem > BEGV) | 86 | while (tem > BEGV) |
| 90 | { | 87 | { |
| @@ -93,8 +90,6 @@ find_defun_start (pos) | |||
| 93 | break; | 90 | break; |
| 94 | /* Move to beg of previous line. */ | 91 | /* Move to beg of previous line. */ |
| 95 | tem = scan_buffer ('\n', tem, -2, &shortage); | 92 | tem = scan_buffer ('\n', tem, -2, &shortage); |
| 96 | if (shortage == 0) | ||
| 97 | tem++; | ||
| 98 | } | 93 | } |
| 99 | 94 | ||
| 100 | /* Record what we found, for the next try. */ | 95 | /* Record what we found, for the next try. */ |