diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-02 11:05:30 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-02 11:05:30 -0400 |
commit | 5a1deece01a57849e672716c5af3ecbe4bca92c5 (patch) | |
tree | 9fdbde5b69a6871e87bc608bedb960b9d040973e | |
parent | 26d58d9192954fbb6d6376ab0688e46c3ebccf82 (diff) | |
download | emacsconf-el-5a1deece01a57849e672716c5af3ecbe4bca92c5.tar.xz emacsconf-el-5a1deece01a57849e672716c5af3ecbe4bca92c5.zip |
Don't lose the last talk
-rw-r--r-- | emacsconf.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacsconf.el b/emacsconf.el index 39a1426..9010bb8 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -684,8 +684,8 @@ Talks with a FIXED_TIME property are not moved." (1+ (seq-position info start (lambda (o match) (string-match match (plist-get o :title))))) (if end - (1- (seq-position info end - (lambda (o match) (string-match match (plist-get o :title))))) + (seq-position info end + (lambda (o match) (string-match match (plist-get o :title)))) (length info)))) ;;; Embark |