diff options
| author | Dan Nicolaescu | 2010-07-12 09:32:53 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-12 09:32:53 -0700 |
| commit | 6f704c767571d03df1cb429aadccd60b82a5c47b (patch) | |
| tree | de786f95130149b5923c2af9db97573ec1ce0719 /src/coding.c | |
| parent | e6cfa7c31f88729a1050e4970c11b8c0c8c1f76c (diff) | |
| download | emacs-6f704c767571d03df1cb429aadccd60b82a5c47b.tar.gz emacs-6f704c767571d03df1cb429aadccd60b82a5c47b.zip | |
Convert more function definitions to standard C.
* src/xdisp.c (window_box_edges, handle_single_display_spec)
(display_string): Convert definition to standard C.
* src/scroll.c (do_direct_scrolling, scrolling_1):
* src/dispnew.c (allocate_matrices_for_frame_redisplay)
(mirrored_line_dance):
* src/coding.c (code_convert_string):
* src/charset.c (map_charset_chars):
* src/ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
(Fregister_ccl_program, Fregister_code_conversion_map):
* src/keyboard.c (kbd_buffer_nr_stored): Likewise.
(head_table): Make static and const.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 44fb992d1a8..dcd31fe9f28 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9017,10 +9017,8 @@ not fully specified.) */) | |||
| 9017 | } | 9017 | } |
| 9018 | 9018 | ||
| 9019 | Lisp_Object | 9019 | Lisp_Object |
| 9020 | code_convert_string (string, coding_system, dst_object, | 9020 | code_convert_string (Lisp_Object string, Lisp_Object coding_system, |
| 9021 | encodep, nocopy, norecord) | 9021 | Lisp_Object dst_object, int encodep, int nocopy, int norecord) |
| 9022 | Lisp_Object string, coding_system, dst_object; | ||
| 9023 | int encodep, nocopy, norecord; | ||
| 9024 | { | 9022 | { |
| 9025 | struct coding_system coding; | 9023 | struct coding_system coding; |
| 9026 | EMACS_INT chars, bytes; | 9024 | EMACS_INT chars, bytes; |