diff options
| author | Stefan Monnier | 2007-06-29 03:37:33 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-29 03:37:33 +0000 |
| commit | 8e50cc2df8df6f773422ab11805704eaa4bba016 (patch) | |
| tree | 5041fa64f3f1bc6d4ffd1465a88a40055b7b39ab /src/buffer.c | |
| parent | df2d551eba1af9966308bb70da6dd5f4e03b650e (diff) | |
| download | emacs-8e50cc2df8df6f773422ab11805704eaa4bba016.tar.gz emacs-8e50cc2df8df6f773422ab11805704eaa4bba016.zip | |
Replace uses of GC_* macros with the non-GC_ versions.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 331df150f62..5e4b091dfa2 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -2867,7 +2867,7 @@ overlay_touches_p (pos) | |||
| 2867 | int endpos; | 2867 | int endpos; |
| 2868 | 2868 | ||
| 2869 | XSETMISC (overlay ,tail); | 2869 | XSETMISC (overlay ,tail); |
| 2870 | if (!GC_OVERLAYP (overlay)) | 2870 | if (!OVERLAYP (overlay)) |
| 2871 | abort (); | 2871 | abort (); |
| 2872 | 2872 | ||
| 2873 | endpos = OVERLAY_POSITION (OVERLAY_END (overlay)); | 2873 | endpos = OVERLAY_POSITION (OVERLAY_END (overlay)); |
| @@ -2882,7 +2882,7 @@ overlay_touches_p (pos) | |||
| 2882 | int startpos; | 2882 | int startpos; |
| 2883 | 2883 | ||
| 2884 | XSETMISC (overlay, tail); | 2884 | XSETMISC (overlay, tail); |
| 2885 | if (!GC_OVERLAYP (overlay)) | 2885 | if (!OVERLAYP (overlay)) |
| 2886 | abort (); | 2886 | abort (); |
| 2887 | 2887 | ||
| 2888 | startpos = OVERLAY_POSITION (OVERLAY_START (overlay)); | 2888 | startpos = OVERLAY_POSITION (OVERLAY_START (overlay)); |