Universal variable callbacks should only be announced for changed

values, not every value. Also support erase notifications.
This commit is contained in:
ridiculousfish
2014-06-16 12:25:33 -07:00
parent 6277a2e4a4
commit 3513ce3ac0
4 changed files with 168 additions and 42 deletions

View File

@@ -351,6 +351,13 @@ static void universal_callback(fish_message_type_t type, const wchar_t *name, co
str=L"SET";
break;
}
case ERASE:
{
str=L"ERASE";
break;
}
default:
break;
}