diff options
author | noa | 2025-02-17 15:01:44 +0800 |
---|---|---|
committer | noa | 2025-02-17 15:01:44 +0800 |
commit | 1762bb40a56c482563937d95592b60caf2c7843c (patch) | |
tree | ab81e12b10609aa04b2625c97272e9d442e35526 | |
parent | dbaf3314c4d26dc85a1081806e003fc7cd479d37 (diff) |
Fix typo in defun
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 6bb05d9..61f00b5 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -758,7 +758,7 @@ With prefix argument TIME, also add the current time." (if time (insert (format-time-string "[%Y-%m-%d %H:%M]")) (insert (format-time-string "[%Y-%m-%d]")))) -(defun noa/insert-datetime () +(defun noa/insert-date-time () (interactive) (noa/insert-date t)) |