diff options
| author | Dan Nicolaescu | 2010-07-04 21:52:39 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-04 21:52:39 -0700 |
| commit | dd4c5104086a55654982112f71c2f69e1e8e0cd1 (patch) | |
| tree | e27410ebcc2b0f4399d43b7e05e2519bc4599e43 /src/syntax.c | |
| parent | 9c8a2331d427aa8e7b2c7deeba04c76b56ce694c (diff) | |
| download | emacs-dd4c5104086a55654982112f71c2f69e1e8e0cd1.tar.gz emacs-dd4c5104086a55654982112f71c2f69e1e8e0cd1.zip | |
Convert declarations or definitions to standard C.
* src/xsmfns.c (smc_save_yourself_CB, smc_error_handler):
* src/xrdb.c (get_system_name):
* src/window.c (shrink_windows):
* src/syntax.c (forw_comment):
* src/scroll.c (calculate_scrolling, calculate_direct_scrolling)
(ins_del_costs):
* src/mem-limits.h (start_of_data):
* src/lread.c (readevalloop):
* src/gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
(xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
* src/frame.c (x_get_focus_frame):
* src/floatfns.c (fmod_float):
* src/fileio.c (choose_write_coding_system):
* src/emacs.c (fatal_error_signal, init_cmdargs, argmatch)
(malloc_initialize_hook, sort_args, synchronize_locale):
* src/doprnt.c (doprnt):
* src/dired.c (compile_pattern):
* src/data.c (fmod_float):
* src/chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
(map_char_table_for_charset):
* src/charset.c (define_charset_internal):
* src/alloc.c (Fgarbage_collect): Convert declarations or definitions
to standard C.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/syntax.c b/src/syntax.c index 22620219335..2f83b0cc644 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1331,7 +1331,7 @@ and the function returns nil. Field boundaries are not noticed if | |||
| 1331 | return val == orig_val ? Qt : Qnil; | 1331 | return val == orig_val ? Qt : Qnil; |
| 1332 | } | 1332 | } |
| 1333 | 1333 | ||
| 1334 | Lisp_Object skip_chars (); | 1334 | Lisp_Object skip_chars (int, Lisp_Object, Lisp_Object, int); |
| 1335 | 1335 | ||
| 1336 | DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, | 1336 | DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, |
| 1337 | doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. | 1337 | doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. |
| @@ -2093,12 +2093,10 @@ in_classes (int c, Lisp_Object iso_classes) | |||
| 2093 | remains valid for forward search starting at the returned position. */ | 2093 | remains valid for forward search starting at the returned position. */ |
| 2094 | 2094 | ||
| 2095 | static int | 2095 | static int |
| 2096 | forw_comment (from, from_byte, stop, nesting, style, prev_syntax, | 2096 | forw_comment (EMACS_INT from, EMACS_INT from_byte, EMACS_INT stop, |
| 2097 | charpos_ptr, bytepos_ptr, incomment_ptr) | 2097 | int nesting, int style, int prev_syntax, |
| 2098 | EMACS_INT from, from_byte, stop; | 2098 | EMACS_INT *charpos_ptr, EMACS_INT *bytepos_ptr, |
| 2099 | int nesting, style, prev_syntax; | 2099 | int *incomment_ptr) |
| 2100 | EMACS_INT *charpos_ptr, *bytepos_ptr; | ||
| 2101 | int *incomment_ptr; | ||
| 2102 | { | 2100 | { |
| 2103 | register int c, c1; | 2101 | register int c, c1; |
| 2104 | register enum syntaxcode code; | 2102 | register enum syntaxcode code; |