]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/notmuch.el
emacs: relax tag syntax check in `notmuch-tag' function
[notmuch] / emacs / notmuch.el
index 862d9e8f39ca7e11d26921bd62e8398738dd5ce7..b06d8a113d8fce4f178b0e1f54783704761cc487 100644 (file)
@@ -550,7 +550,7 @@ notmuch-after-tag-hook will be run."
   ;; Perform some validation
   (when (null tags) (error "No tags given"))
   (mapc (lambda (tag)
-         (unless (string-match-p "^[-+][-+_.[:word:]]+$" tag)
+         (unless (string-match-p "^[-+]\\S-+$" tag)
            (error "Tag must be of the form `+this_tag' or `-that_tag'")))
        tags)
   (run-hooks 'notmuch-before-tag-hook)