mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix expiration of doom-store entries
This commit is contained in:
@ -85,7 +85,7 @@ the actual variables themselves or their values."
|
|||||||
(let ((ttl (car data)))
|
(let ((ttl (car data)))
|
||||||
(cond ((functionp ttl)
|
(cond ((functionp ttl)
|
||||||
(not (funcall ttl key data)))
|
(not (funcall ttl key data)))
|
||||||
((integerp ttl)
|
((consp ttl)
|
||||||
(time-less-p ttl (current-time))))))
|
(time-less-p ttl (current-time))))))
|
||||||
|
|
||||||
(defun doom--store-flush (location)
|
(defun doom--store-flush (location)
|
||||||
|
Reference in New Issue
Block a user