No backups for no name files

This commit is contained in:
Zachary Yedidia
2019-12-22 13:43:29 -05:00
parent c4d5d7c195
commit fc706bc404
7 changed files with 18 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
package action
import (
"os"
"runtime"
"github.com/zyedidia/clipboard"
"github.com/zyedidia/micro/internal/display"
@@ -47,7 +47,7 @@ func (t *TermPane) Quit() {
} else {
screen.Screen.Fini()
InfoBar.Close()
os.Exit(0)
runtime.Goexit()
}
}