pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dc2b54
)
Remove explicit 'return' from 'void' functions.
author
noname@inventati.org
<noname@inventati.org>
Sat, 18 Apr 2015 23:24:12 +0000
(
01:24
+0200)
committer
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Mon, 20 Apr 2015 07:28:14 +0000
(09:28 +0200)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
dcb80ca
..
c67619d
100644
(file)
--- 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;
}
/*