mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-15 21:14:35 +02:00
get rid of interface{} since we now require Go 1.18
This commit is contained in:
@@ -139,7 +139,7 @@ func (self *Loop) KillIfSignalled() {
|
||||
}
|
||||
}
|
||||
|
||||
func (self *Loop) DebugPrintln(args ...interface{}) {
|
||||
func (self *Loop) DebugPrintln(args ...any) {
|
||||
if self.controlling_term != nil {
|
||||
const limit = 2048
|
||||
msg := fmt.Sprintln(args...)
|
||||
|
||||
Reference in New Issue
Block a user