aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorHIROSHI OOTA2012-01-25 13:35:05 +0800
committerChong Yidong2012-01-25 13:35:05 +0800
commit5f53d2441abf6eafe8e14f29d73e14afe8bec35f (patch)
tree34d0569cbd3942d42541c1cf4db826faaa198871 /src/coding.c
parent8fd538931d07df87b6346c7183f02eee60543541 (diff)
downloademacs-5f53d2441abf6eafe8e14f29d73e14afe8bec35f.tar.gz
emacs-5f53d2441abf6eafe8e14f29d73e14afe8bec35f.zip
* src/coding.c (encode_designation_at_bol): Change return value to EMACS_INT.emacs-23.4
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 898bfd71f43..8e96db1f521 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -944,7 +944,7 @@ static void coding_alloc_by_making_gap P_ ((struct coding_system *,
944static unsigned char *alloc_destination P_ ((struct coding_system *, 944static unsigned char *alloc_destination P_ ((struct coding_system *,
945 EMACS_INT, unsigned char *)); 945 EMACS_INT, unsigned char *));
946static void setup_iso_safe_charsets P_ ((Lisp_Object)); 946static void setup_iso_safe_charsets P_ ((Lisp_Object));
947static int encode_designation_at_bol P_ ((struct coding_system *, 947static EMACS_INT encode_designation_at_bol P_ ((struct coding_system *,
948 int *, int *, unsigned char *)); 948 int *, int *, unsigned char *));
949static int detect_eol P_ ((const unsigned char *, 949static int detect_eol P_ ((const unsigned char *,
950 EMACS_INT, enum coding_category)); 950 EMACS_INT, enum coding_category));
@@ -4509,7 +4509,7 @@ encode_invocation_designation (charset, coding, dst, p_nchars)
4509 If the current block ends before any end-of-line, we may fail to 4509 If the current block ends before any end-of-line, we may fail to
4510 find all the necessary designations. */ 4510 find all the necessary designations. */
4511 4511
4512static int 4512static EMACS_INT
4513encode_designation_at_bol (coding, charbuf, charbuf_end, dst) 4513encode_designation_at_bol (coding, charbuf, charbuf_end, dst)
4514 struct coding_system *coding; 4514 struct coding_system *coding;
4515 int *charbuf, *charbuf_end; 4515 int *charbuf, *charbuf_end;