aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-09-02 19:35:49 +0000
committerGerd Moellmann2000-09-02 19:35:49 +0000
commit8892f40bde07b11c5e2c24719acbcf7239f42de3 (patch)
tree433299881b5afea3f22dce1a37c6ad7d5c334ae7 /src/editfns.c
parentdaaf40c7dabd004635454864b859b8fbd0a7c1da (diff)
downloademacs-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.c12
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));
79static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object)); 71static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object));
80static void transpose_markers P_ ((int, int, int, int, int, int, int, int)); 72static void transpose_markers P_ ((int, int, int, int, int, int, int, int));
81 73
74#ifdef HAVE_INDEX
75extern char *index P_ ((const char *, int));
76#endif
77
82Lisp_Object Vbuffer_access_fontify_functions; 78Lisp_Object Vbuffer_access_fontify_functions;
83Lisp_Object Qbuffer_access_fontify_functions; 79Lisp_Object Qbuffer_access_fontify_functions;
84Lisp_Object Vbuffer_access_fontified_property; 80Lisp_Object Vbuffer_access_fontified_property;