Ignore:
Timestamp:
Mar 12, 2006, 6:02:46 PM (19 years ago)
Author:
bird
Message:

applied OS/2 patches (manually).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/texinfo/makeinfo/node.c

    r2617 r2619  
    504504    char *optr = otem;
    505505    int need_old = 0;
    506    
     506
    507507    for (; *optr; optr++)
    508508      {
     
    513513          }
    514514      }
    515    
     515
    516516    if (need_old)
    517517      {
     
    974974
    975975      if (!splitting && no_headers)
    976         { /* cross refs need a name="#anchor" even if not writing headers */ 
     976        { /* cross refs need a name="#anchor" even if not writing headers */
    977977          add_html_names (node);
    978978        }
     
    984984          add_word_args ("<p>%s\n", splitting ? "" : "<hr>");
    985985
    986           /* In the split HTML case, the filename is wrong for the 
     986          /* In the split HTML case, the filename is wrong for the
    987987             old-style converted names, but we'll add them anyway, for
    988988             consistency.  (And we need them in the normal (not
     
    995995              add_word ((char *) _("Next:"));
    996996              add_word ("&nbsp;");
    997              
     997
    998998              add_word ("<a rel=\"next\" accesskey=\"n\" href=\"");
    999999              add_anchor_name (tem, 1);
    10001000              tem = escape_string (tem);
    10011001              add_word_args ("\">%s</a>", tem);
    1002              
     1002       
    10031003              free (tem);
    10041004
     
    18801880                  char *split_basename = filename_part (split_filename);
    18811881
     1882#ifdef __EMX__
     1883                  fd = open (split_filename,
     1884                             O_WRONLY|O_TRUNC|O_CREAT|O_BINARY, 0666);
     1885#else
    18821886                  fd = open (split_filename, O_WRONLY|O_TRUNC|O_CREAT, 0666);
     1887#endif
    18831888                  if (fd < 0
    18841889                      || write (fd, the_header, header_size) != header_size
     
    19181923       original again.  We must use `output_stream', or
    19191924       write_tag_table_indirect () won't know where to place the output. */
     1925#ifdef __EMX__
     1926    output_stream = fopen (filename, FOPEN_WBIN);
     1927#else
    19201928    output_stream = fopen (filename, "w");
     1929#endif
    19211930    if (!output_stream)
    19221931      {
Note: See TracChangeset for help on using the changeset viewer.