diff options
author | JSDurand <mmemmew@gmail.com> | 2022-02-18 15:42:14 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-02-18 15:42:14 +0800 |
commit | 3a67a31c2d92524c6937e29af6d2e8e3d7ec836b (patch) | |
tree | b8c58053d75cba5b16eda5f05c69c96cfff663f6 /dashboard.el | |
parent | f6e277c53b37938a562a9e4729ebc4cc60982009 (diff) |
dashboard: remove a trailing period.
* dashboard.el (dont-kill-dashboard-fn): Such an error / warning
message should not end with a period.
Diffstat (limited to 'dashboard.el')
-rw-r--r-- | dashboard.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard.el b/dashboard.el index 09fa4ed..f249745 100644 --- a/dashboard.el +++ b/dashboard.el @@ -74,7 +74,7 @@ If FORCE is non-nil, re-gerenate the dashboard buffer." ((eq (current-buffer) (get-buffer dashboard-buffer-name)) ;; The function message returns the message, so applying not will ;; produce nil as needed. - (not (message "Don't kill the dashboard buffer."))) + (not (message "Don't kill the dashboard buffer"))) (t))) (add-hook 'kill-buffer-query-functions 'dont-kill-dashboard-fn) |