badwords: add more contractions, fix fallouts

Also fix hits in autotools scripts (not to enforce).

Closes #19576
This commit is contained in:
Viktor Szakats 2025-11-17 18:03:22 +01:00
parent ad35ecba97
commit 1e1ec7f6c2
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
46 changed files with 126 additions and 113 deletions

View file

@ -54,7 +54,7 @@ static int unslashquote(const char *line, struct dynbuf *param)
/* default is to output the letter after the backslash */
switch(out = *line) {
case '\0':
continue; /* this'll break out of the loop */
continue; /* this breaks out of the loop */
case 't':
out = '\t';
break;