bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Omit redundant semicolon in QPUTS


From: Paul Eggert
Subject: Omit redundant semicolon in QPUTS
Date: Fri, 3 Jan 2003 13:57:31 -0800

I installed this minor cleanup:

2003-01-03  Paul Eggert  <address@hidden>

        * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.

--- src/scan-skel.l     3 Jan 2003 14:28:35 -0000       1.21
+++ src/scan-skel.l     3 Jan 2003 21:56:01 -0000       1.22
@@ -1,6 +1,6 @@
 /* Scan Bison Skeletons.                                       -*- C -*-
 
-   Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -34,7 +34,7 @@
 int skel_lex (void);
 
 #define QPUTS(String) \
-   fputs (quotearg_style (c_quoting_style, (String)), yyout);
+   fputs (quotearg_style (c_quoting_style, (String)), yyout)
 
 %}
 %%




reply via email to

[Prev in Thread] Current Thread [Next in Thread]