vte r2268 - trunk/src
- From: behdad svn gnome org
- To: svn-commits-list gnome org
- Subject: vte r2268 - trunk/src
- Date: Mon, 1 Dec 2008 09:30:29 +0000 (UTC)
Author: behdad
Date: Mon Dec 1 09:30:29 2008
New Revision: 2268
URL: http://svn.gnome.org/viewvc/vte?rev=2268&view=rev
Log:
Minor.
Modified:
trunk/src/vteseq.c
Modified: trunk/src/vteseq.c
==============================================================================
--- trunk/src/vteseq.c (original)
+++ trunk/src/vteseq.c Mon Dec 1 09:30:29 2008
@@ -3387,22 +3387,22 @@
/* Handle a terminal control sequence and its parameters. */
void
-_vte_terminal_handle_sequence(VteTerminal *terminal2,
+_vte_terminal_handle_sequence(VteTerminal *terminal,
const char *match_s,
GQuark match G_GNUC_UNUSED,
- GValueArray *params2)
+ GValueArray *params)
{
VteTerminalSequenceHandler handler;
_VTE_DEBUG_IF(VTE_DEBUG_PARSE)
- display_control_sequence(match_s, params2);
+ display_control_sequence(match_s, params);
/* Find the handler for this control sequence. */
handler = _vte_sequence_get_handler (match_s);
if (handler != NULL) {
/* Let the handler handle it. */
- handler (terminal2, params2);
+ handler (terminal, params);
} else {
_vte_debug_print (VTE_DEBUG_MISC,
"No handler for control sequence `%s' defined.\n",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]