view test/classes/@Spork/loadobj.m @ 20354:227d582fa300 stable

build: Sort generated PKG_ADD contents consistently * libinterp/mk-pkg-add: Set LC_COLLATE=C when sorting for consistent output.
author Mike Miller <mtmiller@octave.org>
date Fri, 10 Jul 2015 01:10:30 -0400
parents 4448cc742880
children
line wrap: on
line source

function out = loadobj (in)

  out = in;
  if (!isa (in, 'Spork'))
    out.cack = [];
  end

end