diff options
| author | Gerd Moellmann | 2001-09-17 16:07:51 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-09-17 16:07:51 +0000 |
| commit | 9a6bd51ae7914ae7fc631ff31ba478a0d6d71a81 (patch) | |
| tree | 2ca5b8411711312a6241fd5b82e141b14b6939f5 /src/buffer.h | |
| parent | 9c07782ebd426503c0fc6f3de825b27d144ecfac (diff) | |
| download | emacs-9a6bd51ae7914ae7fc631ff31ba478a0d6d71a81.tar.gz emacs-9a6bd51ae7914ae7fc631ff31ba478a0d6d71a81.zip | |
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
BUF_OVERLAY_MODIFF instead of MODIFF and OVERLAY_MODIFF.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index 6089231811d..c90b12fb212 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -181,8 +181,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 181 | #define BUF_COMPUTE_UNCHANGED(buf, start, end) \ | 181 | #define BUF_COMPUTE_UNCHANGED(buf, start, end) \ |
| 182 | do \ | 182 | do \ |
| 183 | { \ | 183 | { \ |
| 184 | if (BUF_UNCHANGED_MODIFIED (buf) == MODIFF \ | 184 | if (BUF_UNCHANGED_MODIFIED (buf) == BUF_MODIFF (buf) \ |
| 185 | && BUF_OVERLAY_UNCHANGED_MODIFIED (buf) == OVERLAY_MODIFF) \ | 185 | && (BUF_OVERLAY_UNCHANGED_MODIFIED (buf) \ |
| 186 | == BUF_OVERLAY_MODIFF (buf))) \ | ||
| 186 | { \ | 187 | { \ |
| 187 | BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ | 188 | BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ |
| 188 | BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ | 189 | BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ |