aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authornoname <noname@inventati.org>2014-04-25 18:26:54 +0400
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-05-02 21:49:52 +0200
commit99fb365aa30e6d9f8fa035f4d2adbc3145fafb00 (patch)
treeb5e6c7b73eaf5854fd0e776f3cd64bc140453ef7 /st.c
parent870f961c49d3f9dfea8d78666e73fcdd0f90cc57 (diff)
downloadst-99fb365aa30e6d9f8fa035f4d2adbc3145fafb00.tar.gz
Consistent FALLTHROUGH comments.
Diffstat (limited to 'st.c')
-rw-r--r--st.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/st.c b/st.c
index 7474256..fe44608 100644
--- a/st.c
+++ b/st.c
@@ -1837,7 +1837,7 @@ tsetmode(bool priv, bool set, int *args, int narg) {
if (!allowaltscreen)
break;
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
- /* FALLTHRU */
+ /* FALLTHROUGH */
case 47: /* swap screen */
case 1047:
if (!allowaltscreen)
@@ -1851,7 +1851,7 @@ tsetmode(bool priv, bool set, int *args, int narg) {
tswapscreen();
if(*args != 1049)
break;
- /* FALLTRU */
+ /* FALLTHROUGH */
case 1048:
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
break;
@@ -2146,7 +2146,7 @@ strhandle(void) {
if(narg < 3)
break;
p = strescseq.args[2];
- /* fall through */
+ /* FALLTHROUGH */
case 104: /* color reset, here p = NULL */
j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
if (!xsetcolorname(j, p)) {
remember that computers suck.