diff options
author | mattkae <mattkae@protonmail.com> | 2023-06-23 08:21:49 -0400 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2023-06-23 08:21:49 -0400 |
commit | cfb9f3faa35db326397918a5aed19f4f2acf0f43 (patch) | |
tree | f97674159234221e39023fa3d827ac89e6ce28b7 /lisp | |
parent | b3b03e46ea9626ad12a74d6ea7f90ceca1bf1d4f (diff) |
Fix for invalid escape character in latest work
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/org-custom.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el index 1037771..8c917dc 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -83,7 +83,7 @@ '(("t" "Todo" entry (file+headline org-default-notes-file "Tasks") "* TODO %?\n DEADLINE: %t") ("q" "Quick Notes" entry (file+headline org-default-notes-file "Quick Notes") - "* %?\Created on %U\n %i"))) + "* %?Created on %U\n %i"))) (defun org-archive-done-tasks () "Archive all done tasks in an org subtree" |