]> git.pld-linux.org Git - packages/flex.git/blob - flex-info.patch
- get rid of @samp{sth} in generated info page
[packages/flex.git] / flex-info.patch
1 --- flex-2.5.31/doc/flex.texi.orig      2003-03-27 19:02:59.000000000 +0100
2 +++ flex-2.5.31/doc/flex.texi   2003-06-19 00:32:50.000000000 +0200
3 @@ -7,9 +7,9 @@
4  @defindex hk
5  @c  "Options" index
6  @defindex op
7 -@dircategory Programming
8 +@dircategory Programming tools:
9  @direntry
10 -* flex: (flex).      Fast lexical analyzer generator (lex replacement).
11 +* flex: (flex).                                Fast lexical analyzer generator
12  @end direntry
13  @c %**end of header
14  
15 --- flex-2.5.31/doc/flex.texi~  2005-12-25 19:53:23.925467592 +0100
16 +++ flex-2.5.31/doc/flex.texi   2005-12-25 19:59:09.244971048 +0100
17 @@ -1672,7 +1672,7 @@
18      %%
19      expect-floats        BEGIN(expect);
20  
21 -    <expect>[0-9]+@samp{.}[0-9]+      {
22 +    <expect>[0-9]+\.[0-9]+      {
23                  printf( "found a float, = %f\n",
24                          atof( yytext ) );
25                  }
26 @@ -3318,7 +3318,7 @@
27      %option interactive
28      %option always-interactive
29  
30 -    @samp{^} beginning-of-line operator
31 +    ^ beginning-of-line operator
32      yymore()
33  @end verbatim
34  @end example
35 @@ -3832,7 +3832,7 @@
36                  if(c == '\n')
37                      ++mylineno;
38  
39 -                else if(c == @samp{*})
40 +                else if(c == '*')
41                      {
42                      if((c = yyinput()) == '/')
43                          break;
This page took 0.027252 seconds and 3 git commands to generate.