summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-06-01 19:02:38 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-06-02 07:39:30 +0000
commita0288114f9bfa2566e353eba77114ea63b616631 (patch)
tree8c86c7a2a168301943e790fcdd612b20d47ea300 /perl.h
parent1936d2a74fbc35dd0d6862386c9988d92bb8e6e0 (diff)
downloadperl-a0288114f9bfa2566e353eba77114ea63b616631.tar.gz
Quotes fixed, see also perl #36079
Message-ID: <20050602050238.GA4001@petdance.com> p4raw-id: //depot/perl@24666
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index aedc918923..71d8180d06 100644
--- a/perl.h
+++ b/perl.h
@@ -208,7 +208,7 @@
/* gcc -Wall:
* for silencing unused variables that are actually used most of the time,
- * but we cannot quite get rid of, such `ax' in PPCODE+noargs xsubs
+ * but we cannot quite get rid of, such as "ax" in PPCODE+noargs xsubs
*/
#define PERL_UNUSED_VAR(var) ((void)var)
@@ -320,7 +320,7 @@ register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
*/
#if !(defined(STMT_START) && defined(STMT_END))
# if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN) && !defined(__cplusplus)
-# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
+# define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
# define STMT_END )
# else
/* Now which other defined()s do we need here ??? */