diff options
| author | Gerd Moellmann | 1999-11-07 15:53:30 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-07 15:53:30 +0000 |
| commit | 01e9b9dfb9476cb4e054f3a0b07b819ddd2c0235 (patch) | |
| tree | 574d65eb3f75e09d9048e1705876f2698e85472e /src/buffer.c | |
| parent | 4015b3c0ca013a8dd424f4108c963cf3e90a9d14 (diff) | |
| download | emacs-01e9b9dfb9476cb4e054f3a0b07b819ddd2c0235.tar.gz emacs-01e9b9dfb9476cb4e054f3a0b07b819ddd2c0235.zip | |
Remove conditional compilation on USE_TEXT_PROPERTIES.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c index 533103cb162..9233105a6e1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1185,10 +1185,7 @@ with SIGHUP.") | |||
| 1185 | m->chain = Qnil; | 1185 | m->chain = Qnil; |
| 1186 | } | 1186 | } |
| 1187 | BUF_MARKERS (b) = Qnil; | 1187 | BUF_MARKERS (b) = Qnil; |
| 1188 | |||
| 1189 | #ifdef USE_TEXT_PROPERTIES | ||
| 1190 | BUF_INTERVALS (b) = NULL_INTERVAL; | 1188 | BUF_INTERVALS (b) = NULL_INTERVAL; |
| 1191 | #endif | ||
| 1192 | 1189 | ||
| 1193 | /* Perhaps we should explicitly free the interval tree here... */ | 1190 | /* Perhaps we should explicitly free the interval tree here... */ |
| 1194 | } | 1191 | } |
| @@ -3826,10 +3823,8 @@ init_buffer_once () | |||
| 3826 | /* Prevent GC from getting confused. */ | 3823 | /* Prevent GC from getting confused. */ |
| 3827 | buffer_defaults.text = &buffer_defaults.own_text; | 3824 | buffer_defaults.text = &buffer_defaults.own_text; |
| 3828 | buffer_local_symbols.text = &buffer_local_symbols.own_text; | 3825 | buffer_local_symbols.text = &buffer_local_symbols.own_text; |
| 3829 | #ifdef USE_TEXT_PROPERTIES | ||
| 3830 | BUF_INTERVALS (&buffer_defaults) = 0; | 3826 | BUF_INTERVALS (&buffer_defaults) = 0; |
| 3831 | BUF_INTERVALS (&buffer_local_symbols) = 0; | 3827 | BUF_INTERVALS (&buffer_local_symbols) = 0; |
| 3832 | #endif | ||
| 3833 | XSETBUFFER (Vbuffer_defaults, &buffer_defaults); | 3828 | XSETBUFFER (Vbuffer_defaults, &buffer_defaults); |
| 3834 | XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols); | 3829 | XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols); |
| 3835 | 3830 | ||