From 97e2fb12883b10002e7b08feef3110495d22bb4a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 21 May 2017 10:46:06 -0400 Subject: [PATCH] Use messenger error instead of termerror --- cmd/micro/actions_other.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/micro/actions_other.go b/cmd/micro/actions_other.go index 3231a972..567bc4f5 100644 --- a/cmd/micro/actions_other.go +++ b/cmd/micro/actions_other.go @@ -2,8 +2,8 @@ package main -func (v *View) Suspend(usePlugin bool) bool { - TermError("Suspend is only supported on Linux") +func (v *View) Suspend(usePlugin bool) bool { + messenger.Error("Suspend is only supported on Linux") return false }