diff options
| author | Andreas Schwab | 2009-04-16 16:01:14 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2009-04-16 16:01:14 +0000 |
| commit | e7deaab0bcbd095f3a6278b74e7cd29c0913370e (patch) | |
| tree | a15d833bee77e0774bd77e941a06743606ebcca6 /src/lisp.h | |
| parent | 6340c70eb32758be2c3ca9059a3fb75bb9a79e72 (diff) | |
| download | emacs-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.h | 11 |
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 *)); | |||
| 2969 | extern int fast_string_match_ignore_case P_ ((Lisp_Object, Lisp_Object)); | 2969 | extern int fast_string_match_ignore_case P_ ((Lisp_Object, Lisp_Object)); |
| 2970 | extern EMACS_INT fast_looking_at P_ ((Lisp_Object, EMACS_INT, EMACS_INT, | 2970 | extern 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)); |
| 2972 | extern int scan_buffer P_ ((int, int, int, int, int *, int)); | 2972 | extern int scan_buffer P_ ((int, EMACS_INT, EMACS_INT, int, int *, int)); |
| 2973 | extern int scan_newline P_ ((int, int, int, int, int, int)); | 2973 | extern int scan_newline P_ ((EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT, |
| 2974 | extern int find_next_newline P_ ((int, int)); | 2974 | int, int)); |
| 2975 | extern int find_next_newline_no_quit P_ ((int, int)); | 2975 | extern int find_next_newline P_ ((EMACS_INT, int)); |
| 2976 | extern int find_before_next_newline P_ ((int, int, int)); | 2976 | extern int find_next_newline_no_quit P_ ((EMACS_INT, int)); |
| 2977 | extern int find_before_next_newline P_ ((EMACS_INT, EMACS_INT, int)); | ||
| 2977 | extern void syms_of_search P_ ((void)); | 2978 | extern void syms_of_search P_ ((void)); |
| 2978 | extern void clear_regexp_cache P_ ((void)); | 2979 | extern void clear_regexp_cache P_ ((void)); |
| 2979 | 2980 | ||