repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 8f1aa87aa803aabcd0027132a378c693bf20125b: path_to: revision_to:
commit 8f1aa87aa803aabcd0027132a378c693bf20125b Author: Emanuele GiaquintaDate: Sun Nov 27 12:12:33 2011 +0000 Cosmetic, rename function argument. diff --git a/src/keyboard.C b/src/keyboard.C
--- a/src/keyboard.C
+++ b/src/keyboard.C
@@ -65,14 +65,14 @@
*/
static void
-output_string (rxvt_term *rt, const char *str)
+output_string (rxvt_term *term, const char *str)
{
if (strncmp (str, "command:", 8) == 0)
- rt->cmdbuf_append (str + 8, strlen (str) - 8);
+ term->cmdbuf_append (str + 8, strlen (str) - 8);
else if (strncmp (str, "perl:", 5) == 0)
- HOOK_INVOKE((rt, HOOK_USER_COMMAND, DT_STR, str + 5, DT_END));
+ HOOK_INVOKE((term, HOOK_USER_COMMAND, DT_STR, str + 5, DT_END));
else
- rt->tt_write (str, strlen (str));
+ term->tt_write (str, strlen (str));
}
// return: priority_of_a - priority_of_b
-----END OF PAGE-----