diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-05-09 14:43:31 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-05-09 14:43:31 +0200 |
commit | 914fb825df3bde7abdd7947e54f8bf4d2b55e34e (patch) | |
tree | bca6a1bc44dedf37862dd23421737aafac800a5c /st.c | |
parent | cde480c6939e62771ba3b60ef4eb848031aee9f9 (diff) | |
download | st-914fb825df3bde7abdd7947e54f8bf4d2b55e34e.tar.gz st-914fb825df3bde7abdd7947e54f8bf4d2b55e34e.tar.bz2 st-914fb825df3bde7abdd7947e54f8bf4d2b55e34e.zip |
code-style: add fallthrough comment
Patch by Steve Ward, thanks.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2153,6 +2153,7 @@ tcontrolcode(uchar ascii) return; case '\032': /* SUB */ tsetchar('?', &term.c.attr, term.c.x, term.c.y); + /* FALLTHROUGH */ case '\030': /* CAN */ csireset(); break; |