Source-Changes-HG archive

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

[src/trunk]: src/tests/lib/libcurses/director tests/libcurses: add missing se...



details:   https://anonhg.NetBSD.org/src/rev/0aa61cba4e39
branches:  trunk
changeset: 959316:0aa61cba4e39
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Feb 07 19:44:34 2021 +0000

description:
tests/libcurses: add missing semicolon in grammar

diffstat:

 tests/lib/libcurses/director/testlang_parse.y |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 39a51b1f3109 -r 0aa61cba4e39 tests/lib/libcurses/director/testlang_parse.y
--- a/tests/lib/libcurses/director/testlang_parse.y     Sun Feb 07 19:28:07 2021 +0000
+++ b/tests/lib/libcurses/director/testlang_parse.y     Sun Feb 07 19:44:34 2021 +0000
@@ -1,5 +1,5 @@
 %{
-/*     $NetBSD: testlang_parse.y,v 1.30 2021/02/07 18:32:20 rillig Exp $       */
+/*     $NetBSD: testlang_parse.y,v 1.31 2021/02/07 19:44:34 rillig Exp $       */
 
 /*-
  * Copyright 2009 Brett Lymn <blymn%NetBSD.org@localhost>
@@ -471,7 +471,7 @@
 reference      : VARIABLE {
                        assign_rets(data_ref, $1);
                }
-               /* XXX: missing semicolon; how does yacc interpret this? */
+               ;
 
 fn_name                : VARNAME {
                        if (command.function != NULL)



Home | Main Index | Thread Index | Old Index