aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-07 20:41:22 -0800
committerPaul Eggert2011-03-07 20:41:22 -0800
commite2f1bab96318b2809aad624ee9bbbdfd7fd6dd6e (patch)
treeb66ec185dc1ad486b2aa731a139035265abca826 /src/coding.c
parent2735d0606bd871584b2e6343f3dce4c1a155b296 (diff)
downloademacs-e2f1bab96318b2809aad624ee9bbbdfd7fd6dd6e.tar.gz
emacs-e2f1bab96318b2809aad624ee9bbbdfd7fd6dd6e.zip
* coding.c (emacs_mule_char, encode_invocation_designation):
Now static, since they're not used elsewhere.
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 495e8148b05..4fdbd1fd752 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -1982,7 +1982,7 @@ detect_coding_emacs_mule (struct coding_system *coding,
1982 the decoded character or rule. If an invalid byte is found, return 1982 the decoded character or rule. If an invalid byte is found, return
1983 -1. If SRC is too short, return -2. */ 1983 -1. If SRC is too short, return -2. */
1984 1984
1985int 1985static int
1986emacs_mule_char (struct coding_system *coding, const unsigned char *src, 1986emacs_mule_char (struct coding_system *coding, const unsigned char *src,
1987 int *nbytes, int *nchars, int *id, 1987 int *nbytes, int *nchars, int *id,
1988 struct composition_status *cmp_status) 1988 struct composition_status *cmp_status)
@@ -4228,7 +4228,7 @@ decode_coding_iso_2022 (struct coding_system *coding)
4228 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. 4228 to use CHARSET. The element `spec.iso_2022' of *CODING is updated.
4229 Return new DST. */ 4229 Return new DST. */
4230 4230
4231unsigned char * 4231static unsigned char *
4232encode_invocation_designation (struct charset *charset, 4232encode_invocation_designation (struct charset *charset,
4233 struct coding_system *coding, 4233 struct coding_system *coding,
4234 unsigned char *dst, int *p_nchars) 4234 unsigned char *dst, int *p_nchars)