diff options
| author | Richard M. Stallman | 1993-03-06 02:58:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-06 02:58:49 +0000 |
| commit | 78d7ac46c72e9c093191a3065ce6540033803599 (patch) | |
| tree | 293b978fe4f6084b15bf812372bdde0de827c735 /src | |
| parent | f405a5850cf04d7fd24e673718116fbfb8c83dcc (diff) | |
| download | emacs-78d7ac46c72e9c093191a3065ce6540033803599.tar.gz emacs-78d7ac46c72e9c093191a3065ce6540033803599.zip | |
(check_protected_fields): Delete decl.
Diffstat (limited to 'src')
| -rw-r--r-- | src/insdel.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/insdel.c b/src/insdel.c index 35345440c2a..7b5b8e083c1 100644 --- a/src/insdel.c +++ b/src/insdel.c | |||
| @@ -24,10 +24,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 24 | #include "buffer.h" | 24 | #include "buffer.h" |
| 25 | #include "window.h" | 25 | #include "window.h" |
| 26 | 26 | ||
| 27 | /* Nonzero means don't allow protected fields to be modified. */ | ||
| 28 | |||
| 29 | extern int check_protected_fields; | ||
| 30 | |||
| 31 | /* Move gap to position `pos'. | 27 | /* Move gap to position `pos'. |
| 32 | Note that this can quit! */ | 28 | Note that this can quit! */ |
| 33 | 29 | ||
| @@ -497,11 +493,6 @@ prepare_to_modify_buffer (start, end) | |||
| 497 | if (!NILP (current_buffer->read_only)) | 493 | if (!NILP (current_buffer->read_only)) |
| 498 | Fbarf_if_buffer_read_only (); | 494 | Fbarf_if_buffer_read_only (); |
| 499 | 495 | ||
| 500 | #if 0 /* Superceded by interval code */ | ||
| 501 | if (check_protected_fields) | ||
| 502 | Fregion_fields (start, end, Qnil, Qt); | ||
| 503 | #endif | ||
| 504 | |||
| 505 | /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | 496 | /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
| 506 | verify_interval_modification (current_buffer, start, end); | 497 | verify_interval_modification (current_buffer, start, end); |
| 507 | 498 | ||