From 56f78482884349f8af03357e2154528fb5d33145 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Thu, 20 Nov 2008 07:29:14 +0000 Subject: [PATCH] Do not print quotes around __func__ etc., because it is wrong. [r23841] --- ast.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ast.c b/ast.c index 201576e..d6999c6 100644 --- a/ast.c +++ b/ast.c @@ -365,9 +365,7 @@ static void print_funcname(const funcname_expression_t *funcname) case FUNCNAME_FUNCSIG: s = "__FUNCSIG__"; break; case FUNCNAME_FUNCDNAME: s = "__FUNCDNAME__"; break; } - fputc('"', out); fputs(s, out); - fputc('"', out); } static void print_wide_string_literal( -- 2.20.1