diff options
Diffstat (limited to 'attic/elisp/jao-notmuch-move.el')
| -rw-r--r-- | attic/elisp/jao-notmuch-move.el | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/attic/elisp/jao-notmuch-move.el b/attic/elisp/jao-notmuch-move.el index d4626bf..eb7ea4c 100644 --- a/attic/elisp/jao-notmuch-move.el +++ b/attic/elisp/jao-notmuch-move.el @@ -1,6 +1,6 @@  ;;; jao-notmuch-move.el --- Move messages around in notmuch  -*- lexical-binding: t; -*- -;; Copyright (C) 2021, 2024  jao +;; Copyright (C) 2021  jao  ;; Author: jao <mail@jao.io>  ;; Keywords: mail @@ -37,9 +37,9 @@      (user-error "Message not in any registered mailbox!")))  (defun jao-notmuch--msg-props () -  (if-let* ((p (save-excursion -                 (beginning-of-line) -                 (text-property-search-forward :notmuch-message-properties)))) +  (if-let ((p (save-excursion +                (beginning-of-line) +                (text-property-search-forward :notmuch-message-properties))))        (prop-match-value p)      (user-error "No message at point"))) | 
