aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-11 00:03:42 -0500
committerCraig Jennings <c@cjennings.net>2026-07-11 00:03:42 -0500
commit8793741a3033714b0e5fc2c97622ce9ab4cee83b (patch)
tree0417a96325603d06b2983fdc7447bd47766f3745
parente72bc4165739d07d2258992c6376759723270a57 (diff)
downloaddotemacs-8793741a3033714b0e5fc2c97622ce9ab4cee83b.tar.gz
dotemacs-8793741a3033714b0e5fc2c97622ce9ab4cee83b.zip
fix(system-utils): correct swapped args in the run-on-file message
-rw-r--r--modules/system-utils.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system-utils.el b/modules/system-utils.el
index e779026a..58325d06 100644
--- a/modules/system-utils.el
+++ b/modules/system-utils.el
@@ -92,7 +92,7 @@ detached from Emacs."
output-buffer
(format "%s %s" command (shell-quote-argument file)))
(message "Running %s on %s..."
- (file-name-nondirectory file) command)))))
+ command (file-name-nondirectory file))))))
;;; ------------------------------ Server Shutdown ------------------------------