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

« back to all changes in this revision

Viewing changes to scripts/miscellaneous/cast.m

  • 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:
33
33
                             "double"; "single"; "logical"; "char"})))
34
34
        retval = feval (typ, val);
35
35
      else
36
 
        error ("cast: type name `%s' is not a built-in type", typ);
 
36
        error ("cast: type name '%s' is not a built-in type", typ);
37
37
      endif
38
38
    else
39
39
      error ("cast: expecting TYPE name as second argument");