diff options
| author | Gerd Moellmann | 2000-09-02 19:35:49 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-02 19:35:49 +0000 |
| commit | 8892f40bde07b11c5e2c24719acbcf7239f42de3 (patch) | |
| tree | 433299881b5afea3f22dce1a37c6ad7d5c334ae7 /src/editfns.c | |
| parent | daaf40c7dabd004635454864b859b8fbd0a7c1da (diff) | |
| download | emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.tar.gz emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.zip | |
Remove includes of
string.h and strings.h.
(index) [HAVE_INDEX]: Add prototype.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/editfns.c b/src/editfns.c index c8011c8eb3e..7b5264385a2 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -42,14 +42,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 42 | 42 | ||
| 43 | #include "systime.h" | 43 | #include "systime.h" |
| 44 | 44 | ||
| 45 | #ifdef HAVE_STRING_H | ||
| 46 | #include <string.h> | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #ifdef HAVE_STRINGS_H | ||
| 50 | #include <strings.h> | ||
| 51 | #endif | ||
| 52 | |||
| 53 | #define min(a, b) ((a) < (b) ? (a) : (b)) | 45 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 54 | #define max(a, b) ((a) > (b) ? (a) : (b)) | 46 | #define max(a, b) ((a) > (b) ? (a) : (b)) |
| 55 | 47 | ||
| @@ -79,6 +71,10 @@ static Lisp_Object subst_char_in_region_unwind P_ ((Lisp_Object)); | |||
| 79 | static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object)); | 71 | static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object)); |
| 80 | static void transpose_markers P_ ((int, int, int, int, int, int, int, int)); | 72 | static void transpose_markers P_ ((int, int, int, int, int, int, int, int)); |
| 81 | 73 | ||
| 74 | #ifdef HAVE_INDEX | ||
| 75 | extern char *index P_ ((const char *, int)); | ||
| 76 | #endif | ||
| 77 | |||
| 82 | Lisp_Object Vbuffer_access_fontify_functions; | 78 | Lisp_Object Vbuffer_access_fontify_functions; |
| 83 | Lisp_Object Qbuffer_access_fontify_functions; | 79 | Lisp_Object Qbuffer_access_fontify_functions; |
| 84 | Lisp_Object Vbuffer_access_fontified_property; | 80 | Lisp_Object Vbuffer_access_fontified_property; |