TLDR;1
After I update my org-mode version, org-time-today function has just disappeared.
As an awesome coder, I did search in the old git versions of org-mode and copied this function to my cinfug! Now everything is perfect!!!
1 2 3 4 5 6 |
(defun org-time-today () "Time in seconds today at 0:00. Returns the float number of seconds since the beginning of the epoch to the beginning of today (00:00)." (float-time (apply 'encode-time (append '(0 0 0) (nthcdr 3 (decode-time)))))) |
Here is full error string for better search engine indexing.
1 |
Symbol’s function definition is void: org-time-today |
Give version information to being good coder.
1 |
Org mode version 9.2.3 (9.2.3-4-g6ec402-elpaplus @ /home/nwpwr/.emacs.d/elpa/org-plus-contrib-20190408/) |
Also share technique lead us to success2.