From eec07d2be1d82a196d4492802f1f1b6a8368934a Mon Sep 17 00:00:00 2001 From: coast Date: Sat, 26 Jul 2025 00:54:22 +0200 Subject: [PATCH] no silly --- .emacs.d/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))