aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorAndreas Schwab2009-04-16 16:01:14 +0000
committerAndreas Schwab2009-04-16 16:01:14 +0000
commite7deaab0bcbd095f3a6278b74e7cd29c0913370e (patch)
treea15d833bee77e0774bd77e941a06743606ebcca6 /src/lisp.h
parent6340c70eb32758be2c3ca9059a3fb75bb9a79e72 (diff)
downloademacs-e7deaab0bcbd095f3a6278b74e7cd29c0913370e.tar.gz
emacs-e7deaab0bcbd095f3a6278b74e7cd29c0913370e.zip
* search.c: Use EMACS_INT for buffer positions. Add prototypes.
* lisp.h: Adjust prototypes.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 84dcc8fb23e..9d5aa9b15d3 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2969,11 +2969,12 @@ extern int fast_c_string_match_ignore_case P_ ((Lisp_Object, const char *));
2969extern int fast_string_match_ignore_case P_ ((Lisp_Object, Lisp_Object)); 2969extern int fast_string_match_ignore_case P_ ((Lisp_Object, Lisp_Object));
2970extern EMACS_INT fast_looking_at P_ ((Lisp_Object, EMACS_INT, EMACS_INT, 2970extern EMACS_INT fast_looking_at P_ ((Lisp_Object, EMACS_INT, EMACS_INT,
2971 EMACS_INT, EMACS_INT, Lisp_Object)); 2971 EMACS_INT, EMACS_INT, Lisp_Object));
2972extern int scan_buffer P_ ((int, int, int, int, int *, int)); 2972extern int scan_buffer P_ ((int, EMACS_INT, EMACS_INT, int, int *, int));
2973extern int scan_newline P_ ((int, int, int, int, int, int)); 2973extern int scan_newline P_ ((EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT,
2974extern int find_next_newline P_ ((int, int)); 2974 int, int));
2975extern int find_next_newline_no_quit P_ ((int, int)); 2975extern int find_next_newline P_ ((EMACS_INT, int));
2976extern int find_before_next_newline P_ ((int, int, int)); 2976extern int find_next_newline_no_quit P_ ((EMACS_INT, int));
2977extern int find_before_next_newline P_ ((EMACS_INT, EMACS_INT, int));
2977extern void syms_of_search P_ ((void)); 2978extern void syms_of_search P_ ((void));
2978extern void clear_regexp_cache P_ ((void)); 2979extern void clear_regexp_cache P_ ((void));
2979 2980