diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-11 00:03:42 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-11 00:03:42 -0500 |
| commit | 8793741a3033714b0e5fc2c97622ce9ab4cee83b (patch) | |
| tree | 0417a96325603d06b2983fdc7447bd47766f3745 /modules/system-utils.el | |
| parent | e72bc4165739d07d2258992c6376759723270a57 (diff) | |
| download | dotemacs-8793741a3033714b0e5fc2c97622ce9ab4cee83b.tar.gz dotemacs-8793741a3033714b0e5fc2c97622ce9ab4cee83b.zip | |
fix(system-utils): correct swapped args in the run-on-file message
Diffstat (limited to 'modules/system-utils.el')
| -rw-r--r-- | modules/system-utils.el | 2 |
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 ------------------------------ |
