~ubuntu-branches/ubuntu/wily/octave/wily

« back to all changes in this revision

Viewing changes to src/oct-stream.cc

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-05-14 12:42:41 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130514124241-dqow8bc0l4r3yj93
Tags: 3.6.4-2
* Adapt for Texinfo 5
  - add_info_dir_categories: use @dircategory in the patch
  - texinfo5.diff: new patch, fixes compatibility issues with Texinfo 5
* Upgrade to FLTK 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
508
508
 
509
509
      std::cerr
510
510
        << "modifier:   " << elt->modifier << "\n"
511
 
        << "char_class: `" << undo_string_escapes (elt->char_class) << "'\n"
512
 
        << "text:       `" << undo_string_escapes (elt->text) << "'\n\n";
 
511
        << "char_class: '" << undo_string_escapes (elt->char_class) << "'\n"
 
512
        << "text:       '" << undo_string_escapes (elt->text) << "'\n\n";
513
513
    }
514
514
}
515
515
 
867
867
 
868
868
      std::cerr
869
869
        << "args:     " << elt->args << "\n"
870
 
        << "flags:    `" << elt->flags << "'\n"
 
870
        << "flags:    '" << elt->flags << "'\n"
871
871
        << "width:    " << elt->fw << "\n"
872
872
        << "prec:     " << elt->prec << "\n"
873
 
        << "type:     `" << elt->type << "'\n"
874
 
        << "modifier: `" << elt->modifier << "'\n"
875
 
        << "text:     `" << undo_string_escapes (elt->text) << "'\n\n";
 
873
        << "type:     '" << elt->type << "'\n"
 
874
        << "modifier: '" << elt->modifier << "'\n"
 
875
        << "text:     '" << undo_string_escapes (elt->text) << "'\n\n";
876
876
    }
877
877
}
878
878
 
1384
1384
 \
1385
1385
  tmp.resize (n)
1386
1386
 
1387
 
// For a `%s' format, skip initial whitespace and then read until the
 
1387
// For a '%s' format, skip initial whitespace and then read until the
1388
1388
// next whitespace character or until WIDTH characters have been read.
1389
1389
#define BEGIN_S_CONVERSION() \
1390
1390
  int width = elt->width; \
2473
2473
 
2474
2474
          if (elt)
2475
2475
            {
2476
 
              // NSA is the number of `star' args to convert.
 
2476
              // NSA is the number of 'star' args to convert.
2477
2477
 
2478
2478
              int nsa = (elt->fw < 0) + (elt->prec < 0);
2479
2479