diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
commit | 149c77decdbc81979af5aa9853e346f9beebca79 (patch) | |
tree | 99ba28af0c9747425ff923feb437f6ccc1ad3f88 /src/gui/curses/gui-curses-window.c | |
parent | 46677c79fcb0aa57ee2129f959c76267a8f08d8d (diff) | |
download | weechat-149c77decdbc81979af5aa9853e346f9beebca79.zip |
core: fix typos in many comments and some strings
Diffstat (limited to 'src/gui/curses/gui-curses-window.c')
-rw-r--r-- | src/gui/curses/gui-curses-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index 40e0e84fd..d8ba1aa5f 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -2245,7 +2245,7 @@ gui_window_set_title (const char *title) { printf ("\033&f0k%dD%s", (int)(strlen(title) + 1), title); } - /* the following term supports the xterm excapes */ + /* the following terminals support the xterm escape codes */ else if ((strncmp (envterm, "xterm", 5) == 0) || (strncmp (envterm, "rxvt", 4) == 0) || (strcmp (envterm, "Eterm") == 0) @@ -2272,7 +2272,7 @@ gui_window_set_title (const char *title) { printf ("\033&f0k%dD%s", (int)strlen("Terminal"), "Terminal"); } - /* the following term supports the xterm excapes */ + /* the following terminals support the xterm escape codes */ else if ((strncmp (envterm, "xterm", 5) == 0) || (strncmp (envterm, "rxvt", 4) == 0) || (strcmp (envterm, "Eterm") == 0) |