Mercurial > emacs
diff src/buffer.c @ 26372:f35140f031b4
Remove conditional compilation on USE_TEXT_PROPERTIES.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Sun, 07 Nov 1999 15:52:40 +0000 |
| parents | 8455090c3fb2 |
| children | 53aa5195c94a |
line wrap: on
line diff
--- a/src/buffer.c Sun Nov 07 13:07:56 1999 +0000 +++ b/src/buffer.c Sun Nov 07 15:52:40 1999 +0000 @@ -1185,10 +1185,7 @@ m->chain = Qnil; } BUF_MARKERS (b) = Qnil; - -#ifdef USE_TEXT_PROPERTIES BUF_INTERVALS (b) = NULL_INTERVAL; -#endif /* Perhaps we should explicitly free the interval tree here... */ } @@ -3826,10 +3823,8 @@ /* Prevent GC from getting confused. */ buffer_defaults.text = &buffer_defaults.own_text; buffer_local_symbols.text = &buffer_local_symbols.own_text; -#ifdef USE_TEXT_PROPERTIES BUF_INTERVALS (&buffer_defaults) = 0; BUF_INTERVALS (&buffer_local_symbols) = 0; -#endif XSETBUFFER (Vbuffer_defaults, &buffer_defaults); XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols);
