diff options
Diffstat (limited to 'quote.c')
-rw-r--r-- | quote.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -431,6 +431,7 @@ void tcl_quote_buf(struct strbuf *sb, const char *src) case '{': case '}': case '$': case '\\': case '"': strbuf_addch(sb, '\\'); + /* fallthrough */ default: strbuf_addch(sb, c); break; |