mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Return unpropertized strings for filename and message-id
This commit is contained in:
parent
dc4d0a53a2
commit
b7898b0c2a
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ Unlike builtin `next-line' this version accepts no arguments."
|
|||
(if (not (looking-at notmuch-show-message-begin-regexp))
|
||||
(re-search-backward notmuch-show-message-begin-regexp))
|
||||
(re-search-forward notmuch-show-id-regexp)
|
||||
(buffer-substring (match-beginning 1) (match-end 1))))
|
||||
(buffer-substring-no-properties (match-beginning 1) (match-end 1))))
|
||||
|
||||
(defun notmuch-show-get-filename ()
|
||||
(save-excursion
|
||||
|
@ -182,7 +182,7 @@ Unlike builtin `next-line' this version accepts no arguments."
|
|||
(if (not (looking-at notmuch-show-message-begin-regexp))
|
||||
(re-search-backward notmuch-show-message-begin-regexp))
|
||||
(re-search-forward notmuch-show-filename-regexp)
|
||||
(buffer-substring (match-beginning 1) (match-end 1))))
|
||||
(buffer-substring-no-properties (match-beginning 1) (match-end 1))))
|
||||
|
||||
(defun notmuch-show-set-tags (tags)
|
||||
(save-excursion
|
||||
|
|
Loading…
Reference in a new issue