That was close, but here is what actually worked. You pushed me in the right direction

------
include_once DIR . '/includes/adminfunctions.php';
include_once DIR . '/includes/adminfunctions_options.php';
function set_test_save_option($varname, $value)
{
$values = array($varname => $value);
save_settings($values);
}
set_test_save_option('test_saving_options_flag', 'Some Value');
------
This plugin is hooked to 'admin_complete', which seems to be a safe place to modify options. So, when you change an option, this code will get fired afterwards, and the option panel will reflect your changes.