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

« back to all changes in this revision

Viewing changes to src/pr-output.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:
58
58
#include "utils.h"
59
59
#include "variables.h"
60
60
 
61
 
// TRUE means use a scaled fixed point format for `format long' and
62
 
// `format short'.
 
61
// TRUE means use a scaled fixed point format for 'format long' and
 
62
// 'format short'.
63
63
static bool Vfixed_point_format = false;
64
64
 
65
65
// The maximum field width for a number printed by the default output
3631
3631
                }
3632
3632
              else
3633
3633
                {
3634
 
                  error ("format: unrecognized option `short %s'",
 
3634
                  error ("format: unrecognized option 'short %s'",
3635
3635
                         arg.c_str ());
3636
3636
                  return;
3637
3637
                }
3676
3676
                }
3677
3677
              else
3678
3678
                {
3679
 
                  error ("format: unrecognized option `long %s'",
 
3679
                  error ("format: unrecognized option 'long %s'",
3680
3680
                         arg.c_str ());
3681
3681
                  return;
3682
3682
                }
3755
3755
          Vcompact_format = false;
3756
3756
        }
3757
3757
      else
3758
 
        error ("format: unrecognized format state `%s'", arg.c_str ());
 
3758
        error ("format: unrecognized format state '%s'", arg.c_str ());
3759
3759
    }
3760
3760
  else
3761
3761
    {