aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-20 14:10:54 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-20 14:10:54 -0400
commit3d9d17da2cf1118786b1bf65df87054688066b65 (patch)
tree76093af60a145a9f667ce1ac24d020326a69b4f7
parentAdd keybind to insert date/time at POINT (diff)
downloadmmosmacs-3d9d17da2cf1118786b1bf65df87054688066b65.tar.gz
mmosmacs-3d9d17da2cf1118786b1bf65df87054688066b65.tar.bz2
mmosmacs-3d9d17da2cf1118786b1bf65df87054688066b65.zip
Remove stray character
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index 69adffc..78d6a26 100644
--- a/init.el
+++ b/init.el
@@ -867,7 +867,7 @@
867 "Insert the current date time in the format of `mm/date-time-format' at POINT." 867 "Insert the current date time in the format of `mm/date-time-format' at POINT."
868 (interactive) 868 (interactive)
869 (insert (format-time-string mm/date-time-format (current-time)))) 869 (insert (format-time-string mm/date-time-format (current-time))))
870p 870
871(global-set-key (kbd "C-c d") (lambda () (interactive) (mm/insert-date-time))) 871(global-set-key (kbd "C-c d") (lambda () (interactive) (mm/insert-date-time)))
872 872
873 873