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

« back to all changes in this revision

Viewing changes to src/pager.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:
509
509
  external_diary_file.open (diary_file.c_str (), std::ios::app);
510
510
 
511
511
  if (! external_diary_file)
512
 
    error ("diary: can't open diary file `%s'", diary_file.c_str ());
 
512
    error ("diary: can't open diary file '%s'", diary_file.c_str ());
513
513
}
514
514
 
515
515
DEFUN (diary, args, ,
611
611
      else if (arg == "off")
612
612
        Vpage_screen_output = false;
613
613
      else
614
 
        error ("more: unrecognized argument `%s'", arg.c_str ());
 
614
        error ("more: unrecognized argument '%s'", arg.c_str ());
615
615
    }
616
616
  else if (argc == 1)
617
617
    Vpage_screen_output = ! Vpage_screen_output;