diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-14 05:18:02 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-14 05:18:02 +0000 |
commit | e3863b1460cd9598ecb57705c9b22c2f2c552953 (patch) | |
tree | f839c62a271e1da0a9086b6adf22cb9ca99eb7e6 /mandoc_msg.c | |
parent | 62de322fe3ae3638668739b266e3332e94b5acb3 (diff) | |
download | mandoc-e3863b1460cd9598ecb57705c9b22c2f2c552953.tar.gz |
Almost mechanical diff to remove the "struct mparse *" argument
from mandoc_msg(), where it is no longer used.
While here, rename mandoc_vmsg() to mandoc_msg() and retire the
old version: There is really no point in having another function
merely to save "%s" in a few places.
Minus 140 lines of code.
Diffstat (limited to 'mandoc_msg.c')
-rw-r--r-- | mandoc_msg.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/mandoc_msg.c b/mandoc_msg.c index aa0cce5a..d2ccb91f 100644 --- a/mandoc_msg.c +++ b/mandoc_msg.c @@ -288,8 +288,7 @@ mandoc_msg_setrc(enum mandoclevel level) } void -mandoc_vmsg(enum mandocerr t, void *dummy, int line, int col, - const char *fmt, ...) +mandoc_msg(enum mandocerr t, int line, int col, const char *fmt, ...) { va_list ap; enum mandoclevel level; @@ -324,12 +323,3 @@ mandoc_vmsg(enum mandocerr t, void *dummy, int line, int col, } fputc('\n', fileptr); } - -void -mandoc_msg(enum mandocerr t, void *dummy, int line, int col, const char *msg) -{ - if (msg == NULL) - mandoc_vmsg(t, dummy, line, col, NULL); - else - mandoc_vmsg(t, dummy, line, col, "%s", msg); -} |