diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3c8b9c2..882287d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -27,7 +27,7 @@ (let ((file (buffer-file-name))) (cond ((not file) - (message "no file to run!")) + (message "No file to run!")) ((string-match "\\.py\\'" file) (compile (format "python3 %s" file))) ((string-match "\\.c\\'" file) @@ -44,7 +44,7 @@ (compile (format "node %s" file))) ((coast/file-has-shebang-p file) (compile (format "%s" file))) - (t (message "dunno how to run this file >:("))))) + (t (message "Not sure how to run this."))))) (defun coast/file-has-shebang-p (file) (when (and file (file-readable-p file))