rm push/pop

This commit is contained in:
2026-02-26 08:13:18 -06:00
parent eb19b18594
commit a1b41d5ecf
59 changed files with 19546 additions and 19265 deletions

4
log.ce
View File

@@ -391,7 +391,7 @@ function do_enable() {
if (is_array(sink.exclude)) {
new_exclude = []
arrfor(sink.exclude, function(ex) {
if (ex != channel) push(new_exclude, ex)
if (ex != channel) new_exclude[] = ex
})
sink.exclude = new_exclude
}
@@ -438,7 +438,7 @@ function do_disable() {
} else {
if (is_array(sink.channels)) {
arrfor(sink.channels, function(ch) {
if (ch != channel) push(new_channels, ch)
if (ch != channel) new_channels[] = ch
})
sink.channels = new_channels
}