Ralf Wildenhues | 9 Dec 11:18
Picon
Picon

typos

I've found a couple of typos again.

Cheers,
Ralf

2006-12-09  Ralf Wildenhues  <Ralf.Wildenhues <at> gmx.de>

	* doc/bison.texinfo: Fix a couple of typos.

Index: doc/bison.texinfo
===================================================================
RCS file: /cvsroot/bison/bison/doc/bison.texinfo,v
retrieving revision 1.214
diff -u -r1.214 bison.texinfo
--- doc/bison.texinfo	5 Dec 2006 23:13:41 -0000	1.214
+++ doc/bison.texinfo	9 Dec 2006 10:17:23 -0000
@@ -2048,7 +2048,7 @@
             @}
 @end group
 @group
-        | '-' exp %preg NEG     @{ $$ = -$2; @}
+        | '-' exp %prec NEG     @{ $$ = -$2; @}
         | exp '^' exp           @{ $$ = pow ($1, $3); @}
         | '(' exp ')'           @{ $$ = $2; @}
 @end group
@@ -7472,7 +7472,7 @@
 @node C++ Semantic Values
 @subsection C++ Semantic Values
 @c - No objects in unions
- <at> c - YSTYPE
(Continue reading)

Paul Eggert | 9 Dec 19:52
Favicon

Re: typos

Ralf Wildenhues <Ralf.Wildenhues <at> gmx.de> writes:

> -        | '-' exp %preg NEG     @{ $$ = -$2; @}
> +        | '-' exp %prec NEG     @{ $$ = -$2; @}

Thanks, I installed that.

Carsten Clark | 22 Dec 20:03
Favicon

http://www.gnu.org/software/bison/

Hi,

The main Bison page at http://www.gnu.org/software/bison/ contains an  
HTTPS link to the Bison Savannah repository that I think should be a  
plain HTTP link:

<p>
   Test versions of Bison can be found on
   <a href="ftp://alpha.gnu.org/gnu/bison/">ftp://alpha.gnu.org/gnu/ 
bison/</a>
   [via FTP]. The latest bleeding-edge version of the source code, along
   with a revision history, can be found in the
   <a href="https://savannah.gnu.org/projects/bison/">Bison
   Savannah repository</a>.
   Please note that we do not suggest using Bison sources from these
   locations for production use.

Following the HTTPS link, my browser (Safari) complains about lack of  
a certificate.  If I use HTTP, I get the same page without the  
certificate warning.

Happy holidays,
Carsten Clark

Michael McLaughlin | 24 Dec 23:04
Picon

[GNU Bison 2.1] testsuite: 83 failed

Hello,

I am a Mac (OS 10.4.8) developer but I have, to date, used only 
CodeWarrior and I am totally a novice wrt UNIX configure, make, etc. 
Nevertheless, I downloaded the Bison 2.1 source and ran

configure
make check

The output suggested that I send this log to you.

Next, I am instructed to do

make install

but I am a bit worried about this error although it does not look very 
critical.  Should I stick to using the supplied Bison 1.28 package?  The 
latter is quite old but might be good enough.

Thanks.

--

-- 
Michael P. McLaughlin
83. calc.at:587: testing ...
calc.at:587: bison -o calc.c calc.y
calc.at:587: $CC $CFLAGS $CPPFLAGS $LDFLAGS -o calc calc.c $LIBS
stderr:
stdout:
(Continue reading)

Michel Meynard | 16 Dec 14:28
Picon
Favicon

bison manual error

Hello
in section of bison manual

        10.1.5 C++ Scanner Interface

the declaration :
 int *yylex* (semantic_value_type& yylval, location_type& yylloc, type1 
arg1, ...)
is false

it must be

yy::parser::token_type                         \
       yylex (yy::parser::semantic_type* yylval,      \
              yy::parser::location_type* yylloc,...) 

Am i right ???

--

-- 
Cordialement, Michel Meynard.
----------------------------------------
Michel Meynard (e-mail : meynard <at> lirmm.fr)
161, rue ada 
34392 Montpellier Cedex 5
France
tel. : (33) 04 67 41 85 40        fax :  (33) 04 67 41 85 00
web : www.lirmm.fr/~meynard


Gmane