diff options
| author | Roland McGrath | 1992-09-10 22:59:11 +0000 |
|---|---|---|
| committer | Roland McGrath | 1992-09-10 22:59:11 +0000 |
| commit | 79311246434d4866c444cc42838de92308a019a1 (patch) | |
| tree | b540af984458aab8c80d6b39f1706c142acd33f3 | |
| parent | 34e62ca7f6cef8fe6a4ac807e5ee2a635a4c3116 (diff) | |
| download | emacs-79311246434d4866c444cc42838de92308a019a1.tar.gz emacs-79311246434d4866c444cc42838de92308a019a1.zip | |
entered into RCS
| -rw-r--r-- | lisp/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 0d9832d26dd..c0f0bf8d38d 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el | |||
| @@ -246,7 +246,7 @@ Has a preference of looking backwards." | |||
| 246 | (looking-at "[ \t]*#[ \t]*define[ \t]"))) | 246 | (looking-at "[ \t]*#[ \t]*define[ \t]"))) |
| 247 | ;; Handle a C macro definition. | 247 | ;; Handle a C macro definition. |
| 248 | (beginning-of-line) | 248 | (beginning-of-line) |
| 249 | (while (= (char-after (- (point) 2)) ?\\) | 249 | (while (eq (char-after (- (point) 2)) ?\\) ;not =; note above |
| 250 | (forward-line -1)) | 250 | (forward-line -1)) |
| 251 | (search-forward "define") | 251 | (search-forward "define") |
| 252 | (skip-chars-forward " \t") | 252 | (skip-chars-forward " \t") |