view test/bug-60882/bug_60882.m @ 31640:e518e1f7e944

Backed out changeset 34c3cd39c4b9 Revert change because there is code that uses gui_pref.ignore, but only on MAC_OS: global_use_native_dialogs in gui-preferences-global.h. Are there others?
author John W. Eaton <jwe@octave.org>
date Mon, 05 Dec 2022 10:17:17 -0500
parents 0b01806bb663
children
line wrap: on
line source

function retval = bug_60882 ()

  job.foobar = {};

  foobar off

  retval = 42;

endfunction

function foobar (opt)
  assert (opt, 'off');
endfunction