summaryrefslogtreecommitdiff
path: root/src/z-form.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-12-13 13:54:38 +0100
committerBardur Arantsson <bardur@scientician.net>2014-12-13 13:54:38 +0100
commita2819d22e68ba4557ffcbfc31b32df11454f8c07 (patch)
treee4faee367f219ba595151420fdc0338977a297a3 /src/z-form.c
parent1c622b5d3f659c1faa3d6eebd4d26ea6481f4df5 (diff)
Remove plog_fmt
Diffstat (limited to 'src/z-form.c')
-rw-r--r--src/z-form.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/z-form.c b/src/z-form.c
index af254ef7..b9a78fca 100644
--- a/src/z-form.c
+++ b/src/z-form.c
@@ -681,29 +681,6 @@ char *format(cptr fmt, ...)
/*
- * Vararg interface to plog()
- */
-void plog_fmt(cptr fmt, ...)
-{
- char *res;
- va_list vp;
-
- /* Begin the Varargs Stuff */
- va_start(vp, fmt);
-
- /* Format the args */
- res = vformat(fmt, vp);
-
- /* End the Varargs Stuff */
- va_end(vp);
-
- /* Call plog */
- plog(res);
-}
-
-
-
-/*
* Vararg interface to quit()
*/
void quit_fmt(cptr fmt, ...)