From df19747ca2ee990de7169688f5b833df1e9d5c49 Mon Sep 17 00:00:00 2001 From: SteamedFish Date: Thu, 21 Feb 2019 23:33:21 +0800 Subject: [PATCH] change warning messages --- modules/tools/vterm/doctor.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/tools/vterm/doctor.el b/modules/tools/vterm/doctor.el index 8b9429d0c..866c4b62d 100644 --- a/modules/tools/vterm/doctor.el +++ b/modules/tools/vterm/doctor.el @@ -1,13 +1,13 @@ ;;; tools/vterm/doctor.el -*- lexical-binding: t; -*- (unless (executable-find "vterm-ctrl") - (warn! "Couldn't find libvterm library. Please install it on your system")) + (warn! "Couldn't find libvterm. Vterm module won't compile.")) (unless (executable-find "make") - (warn! "Couldn't find make command. Please install it on your system")) + (warn! "Couldn't find make command. Vterm module won't compile.")) (unless (executable-find "cmake") - (warn! "Couldn't find cmake command. Please install it on your system")) + (warn! "Couldn't find cmake command. Vterm module won't compile")) (unless (fboundp 'module-load) - (warn! "You have to compile emacs with MODULES support")) + (warn! "Your emacs don't have MODULES support. Vterm module won't work."))