aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorAndreas Schwab1998-04-14 12:25:56 +0000
committerAndreas Schwab1998-04-14 12:25:56 +0000
commitdfcf069d565c347abf3cb7cec80e6ed8432037ba (patch)
treecd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/coding.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index 602737ad6bf..a98ca65eb9d 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -1681,6 +1681,7 @@ encode_invocation_designation (charset, coding, dst)
1681 If the current block ends before any end-of-line, we may fail to 1681 If the current block ends before any end-of-line, we may fail to
1682 find all the necessary designations. */ 1682 find all the necessary designations. */
1683 1683
1684void
1684encode_designation_at_bol (coding, table, src, src_end, dstp) 1685encode_designation_at_bol (coding, table, src, src_end, dstp)
1685 struct coding_system *coding; 1686 struct coding_system *coding;
1686 Lisp_Object table; 1687 Lisp_Object table;
@@ -2465,6 +2466,7 @@ encode_coding_sjis_big5 (coding, source, destination,
2465 This function is called only when `coding->eol_type' is 2466 This function is called only when `coding->eol_type' is
2466 CODING_EOL_CRLF or CODING_EOL_CR. */ 2467 CODING_EOL_CRLF or CODING_EOL_CR. */
2467 2468
2469int
2468decode_eol (coding, source, destination, src_bytes, dst_bytes) 2470decode_eol (coding, source, destination, src_bytes, dst_bytes)
2469 struct coding_system *coding; 2471 struct coding_system *coding;
2470 unsigned char *source, *destination; 2472 unsigned char *source, *destination;
@@ -2595,6 +2597,7 @@ decode_eol (coding, source, destination, src_bytes, dst_bytes)
2595 `coding->mode & CODING_MODE_SELECTIVE_DISPLAY' is nonzero, code 2597 `coding->mode & CODING_MODE_SELECTIVE_DISPLAY' is nonzero, code
2596 '\r' in source text also means end-of-line. */ 2598 '\r' in source text also means end-of-line. */
2597 2599
2600int
2598encode_eol (coding, source, destination, src_bytes, dst_bytes) 2601encode_eol (coding, source, destination, src_bytes, dst_bytes)
2599 struct coding_system *coding; 2602 struct coding_system *coding;
2600 unsigned char *source, *destination; 2603 unsigned char *source, *destination;
@@ -4941,6 +4944,7 @@ call this function:\n\
4941 4944
4942/*** 8. Post-amble ***/ 4945/*** 8. Post-amble ***/
4943 4946
4947void
4944init_coding_once () 4948init_coding_once ()
4945{ 4949{
4946 int i; 4950 int i;
@@ -4999,6 +5003,7 @@ init_coding_once ()
4999 5003
5000#ifdef emacs 5004#ifdef emacs
5001 5005
5006void
5002syms_of_coding () 5007syms_of_coding ()
5003{ 5008{
5004 Qtarget_idx = intern ("target-idx"); 5009 Qtarget_idx = intern ("target-idx");