Ignore:
Timestamp:
05/17/2004 09:55:01 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
6f461cb
Parents:
01b2724c
Message:

HEAD: Retagged the Contents of ... sections.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3621 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/bison.xml

    r01b2724c rc6cb3aa  
    4747
    4848
    49 <sect2 id="contents-bison"><title>Contents of Bison</title>
     49<sect2 id="contents-bison" role="content"><title>Contents of Bison</title>
    5050
    51 <para><emphasis>Installed programs</emphasis>: bison and yacc</para>
     51<segmentedlist>
     52<segtitle>Installed programs</segtitle>
     53<segtitle>Installed library</segtitle>
     54<seglistitem><seg>bison and yacc</seg><seg>liby.a</seg></seglistitem>
     55</segmentedlist>
    5256
    53 <para><emphasis>Installed library</emphasis>: liby.a</para>
     57<variablelist><title>Short descriptions</title>
     58
     59<varlistentry>
     60<term id="bison"><command>bison</command></term>
     61<listitem>
     62<indexterm zone="ch-system-bison bison"><primary sortas="b-bison">bison</primary></indexterm>
     63<para>generates, from a series of rules, a program
     64for analyzing the structure of text files. Bison is a replacement for yacc
     65(Yet Another Compiler Compiler).</para>
     66</listitem>
     67</varlistentry>
     68
     69<varlistentry>
     70<term id="yacc"><command>yacc</command></term>
     71<listitem>
     72<indexterm zone="ch-system-bison yacc"><primary sortas="b-yacc">yacc</primary></indexterm>
     73<para>is a wrapper for bison, meant for programs
     74that still call yacc instead of bison. It calls bison with the -y option.</para>
     75</listitem>
     76</varlistentry>
     77
     78<varlistentry>
     79<term id="liby.a"><command>liby.a</command></term>
     80<listitem>
     81<indexterm zone="ch-system-bison liby.a"><primary sortas="c-liby.a">liby.a</primary></indexterm>
     82<para>is the Yacc library containing
     83implementations of Yacc-compatible yyerror and main functions. This library
     84is normally not very useful, but POSIX requires it.</para>
     85</listitem>
     86</varlistentry>
     87</variablelist>
    5488
    5589</sect2>
    5690
    57 
    58 <sect2><title>Short descriptions</title>
    59 
    60 <indexterm zone="ch-system-bison bison"><primary sortas="b-bison">bison</primary></indexterm>
    61 <para id="bison"><command>bison</command> generates, from a series of rules, a program
    62 for analyzing the structure of text files. Bison is a replacement for yacc
    63 (Yet Another Compiler Compiler).</para>
    64 
    65 <indexterm zone="ch-system-bison yacc"><primary sortas="b-yacc">yacc</primary></indexterm>
    66 <para id="yacc"><command>yacc</command> is a wrapper for bison, meant for programs
    67 that still call yacc instead of bison. It calls bison with the -y option.</para>
    68 
    69 <indexterm zone="ch-system-bison liby.a"><primary sortas="c-liby.a">liby.a</primary></indexterm>
    70 <para id="liby.a"><command>liby.a</command> is the Yacc library containing
    71 implementations of Yacc-compatible yyerror and main functions. This library
    72 is normally not very useful, but POSIX requires it.</para>
    73 
    74 </sect2>
    75 
    76 
    77 
    7891</sect1>
Note: See TracChangeset for help on using the changeset viewer.