diff options
author | Kenichi Handa <handa@m17n.org> | 2003-12-29 07:51:57 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-12-29 07:51:57 +0000 |
commit | 5af5dd920e3bcf4213a29ec89f63af0cee104c6c (patch) | |
tree | 5b0563935a43828950659880ecdb683d25043479 /src/charset.c | |
parent | 0321663c42deff8636d5f9c7301c89f9de264536 (diff) | |
download | emacs-5af5dd920e3bcf4213a29ec89f63af0cee104c6c.tar.gz |
(charset_table_used): Make it static.
(map_charset_chars): Fix args to c_function with.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 20b4f04065f..8fdf7bc9233 100644 --- a/src/charset.c +++ b/src/charset.c @@ -63,7 +63,7 @@ Lisp_Object Vcharset_hash_table; struct charset *charset_table; static int charset_table_size; -int charset_table_used; +static int charset_table_used; Lisp_Object Qcharsetp; @@ -583,7 +583,7 @@ map_charset_chars (c_function, function, arg, range = Fcons (make_number (from_c), make_number (to_c)); if (NILP (function)) - (*c_function) (range, arg); + (*c_function) (arg, range); else call2 (function, range, arg); } @@ -598,7 +598,7 @@ map_charset_chars (c_function, function, arg, XSETCAR (range, make_number (127)); if (NILP (function)) - (*c_function) (range, arg); + (*c_function) (arg, range); else call2 (function, range, arg); } |