From e843a5783fe65aeb47f589d0d51eb76997ab49f5 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 30 Dec 2020 14:48:59 +0100 Subject: [PATCH] Revert "(Preliminary fix to re-enable the 'hardcopy' command." This reverts commit 1c0b175061a9b0e84a7b47d38d3d0821eded2fb0. --- src/frontend/com_hardcopy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/com_hardcopy.c b/src/frontend/com_hardcopy.c index 15386f099..a9c7e61fb 100644 --- a/src/frontend/com_hardcopy.c +++ b/src/frontend/com_hardcopy.c @@ -23,12 +23,12 @@ * it doesn't. */ void com_hardcopy(wordlist *wl) { - /* Check if there is a graph available + /* Check if there is a graph available */ if (currentgraph == (GRAPH *) NULL) { (void) fprintf(cp_err, "There is no graph to hardcopy.\n"); return; } -*/ + char *fname; size_t n_byte_fname; /* size of fname in bytes, including null */ char buf[BSIZE_SP], device[BSIZE_SP];