mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
emacs: Stop the `truncate-string-to-width' madness.
There's no need to call `truncate-string-to-width' twice in this code path.
This commit is contained in:
parent
c32116d048
commit
e516a712bb
1 changed files with 10 additions and 12 deletions
|
@ -469,18 +469,16 @@ Complete list of currently available key bindings:
|
|||
(let ((thread-id (notmuch-search-find-thread-id))
|
||||
(subject (notmuch-search-find-subject)))
|
||||
(if (> (length thread-id) 0)
|
||||
(notmuch-show thread-id
|
||||
(current-buffer)
|
||||
notmuch-search-query-string
|
||||
;; name the buffer based on notmuch-search-find-subject
|
||||
(if (string-match "^[ \t]*$" subject)
|
||||
"[No Subject]"
|
||||
(truncate-string-to-width
|
||||
(concat "*"
|
||||
(truncate-string-to-width subject 32 nil nil t)
|
||||
"*")
|
||||
32 nil nil t))
|
||||
crypto-switch)
|
||||
(progn
|
||||
(if (string-match "^[ \t]*$" subject)
|
||||
(setq subject "[No Subject]"))
|
||||
|
||||
(notmuch-show thread-id
|
||||
(current-buffer)
|
||||
notmuch-search-query-string
|
||||
;; Name the buffer based on the subject.
|
||||
(concat "*" (truncate-string-to-width subject 30 nil nil t) "*")
|
||||
crypto-switch))
|
||||
(message "End of search results."))))
|
||||
|
||||
(defun notmuch-search-reply-to-thread (&optional prompt-for-sender)
|
||||
|
|
Loading…
Reference in a new issue