aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-03-29 00:41:01 +0200
committerJuanma Barranquero2011-03-29 00:41:01 +0200
commit461c2ab9a5a244ec9a1b253d07c1a8bdfbd8c573 (patch)
treea702b0c29ce32e78717be01c112889684a0453f6 /src/keymap.c
parentf6d6298639ae43539581c2079666d76a54f1557e (diff)
downloademacs-461c2ab9a5a244ec9a1b253d07c1a8bdfbd8c573.tar.gz
emacs-461c2ab9a5a244ec9a1b253d07c1a8bdfbd8c573.zip
src/*.c: Remove some additional unused parameters.
* lisp.h (multibyte_char_to_unibyte): * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl', unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org. * character.h (CHAR_TO_BYTE8): * cmds.c (internal_self_insert): * editfns.c (general_insert_function): * keymap.c (push_key_description): * search.c (Freplace_match): * xdisp.c (message_dolog, set_message_1): All callers changed. * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end', unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org. All callers changed.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 440df06ba4e..10000b935aa 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2387,7 +2387,7 @@ push_key_description (register unsigned int c, register char *p, int force_multi
2387 /* Now we are sure that C is a valid character code. */ 2387 /* Now we are sure that C is a valid character code. */
2388 if (NILP (BVAR (current_buffer, enable_multibyte_characters)) 2388 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
2389 && ! force_multibyte) 2389 && ! force_multibyte)
2390 *p++ = multibyte_char_to_unibyte (c, Qnil); 2390 *p++ = multibyte_char_to_unibyte (c);
2391 else 2391 else
2392 p += CHAR_STRING (c, (unsigned char *) p); 2392 p += CHAR_STRING (c, (unsigned char *) p);
2393 } 2393 }