Mercurial > emacs
diff src/coding.c @ 21514:fa9ff387d260
Fix -Wimplicit warnings.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Tue, 14 Apr 1998 12:25:56 +0000 |
| parents | eeffe4ca2306 |
| children | ca4819c36ab9 |
line wrap: on
line diff
--- a/src/coding.c Tue Apr 14 10:56:46 1998 +0000 +++ b/src/coding.c Tue Apr 14 12:25:56 1998 +0000 @@ -1681,6 +1681,7 @@ If the current block ends before any end-of-line, we may fail to find all the necessary designations. */ +void encode_designation_at_bol (coding, table, src, src_end, dstp) struct coding_system *coding; Lisp_Object table; @@ -2465,6 +2466,7 @@ This function is called only when `coding->eol_type' is CODING_EOL_CRLF or CODING_EOL_CR. */ +int decode_eol (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; unsigned char *source, *destination; @@ -2595,6 +2597,7 @@ `coding->mode & CODING_MODE_SELECTIVE_DISPLAY' is nonzero, code '\r' in source text also means end-of-line. */ +int encode_eol (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; unsigned char *source, *destination; @@ -4941,6 +4944,7 @@ /*** 8. Post-amble ***/ +void init_coding_once () { int i; @@ -4999,6 +5003,7 @@ #ifdef emacs +void syms_of_coding () { Qtarget_idx = intern ("target-idx");
