Skip to content

Commit eb2fa90

Browse files
committed
code: Improve msg
1 parent 6031844 commit eb2fa90

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

eask

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ yargs
1212
)
1313
.command({
1414
command: '*',
15-
handler() { yargs.showHelp(); console.log('\n'); }
15+
handler() { yargs.showHelp(); }
1616
})
1717
.option('global', {
1818
description: 'change default workspace to ~/.emacs.d/',

lisp/clean-elc.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
(dolist (elc elcs)
2020
(ignore-errors (delete-file elc))
2121
(message "Deleting %s..." elc))
22-
(message "\n Total of %s .elc files deleted" (length elcs)))
23-
(message "\n No .elc file(s) found in workspace")))
22+
(message "(Total of %s .elc files deleted)" (length elcs)))
23+
(message "(No .elc file found in workspace)")))
2424

2525
;;; clean-elc.el ends here

lisp/clean.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
(file-name-directory (directory-file-name user-emacs-directory)))))
2020
(ignore-errors (delete-directory target-dir t))
2121
(if eask--first-init-p
22-
(message "\n Workspace already cleaned")
23-
(message "\n Done, workspace `%s` is cleaned" target-dir))))
22+
(message "(Workspace already cleaned)")
23+
(message "Done (workspace `%s` is cleaned)" target-dir))))
2424

2525
;;; clean.el ends here

0 commit comments

Comments
 (0)