aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar noname@inventati.org <noname@inventati.org>2015-04-19 01:24:12 +0200
committerGravatar Roberto E. Vargas Caballero <k0ga@shike2.com>2015-04-20 09:28:14 +0200
commit5528280fae23968ffd3cf0527881cabddc24cf85 (patch)
treea98f07a529d2c481a9a47bfc7dd8ea84ed2dafbf
parent6dc2b546eca11b198c64c9047106970a8d1f85e8 (diff)
Remove explicit 'return' from 'void' functions.
-rw-r--r--st.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/st.c b/st.c
index dcb80ca..c67619d 100644
--- a/st.c
+++ b/st.c
@@ -2504,7 +2504,6 @@ tstrsequence(uchar c) {
strreset();
strescseq.type = c;
term.esc |= ESC_STR;
- return;
}
void
@@ -2586,7 +2585,6 @@ tcontrolcode(uchar ascii) {
}
/* only CAN, SUB, \a and C1 chars interrupt a sequence */
term.esc &= ~(ESC_STR_END|ESC_STR);
- return;
}
/*