mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Closing parenthesis go on the same line
This commit is contained in:
parent
caaa108760
commit
2ee8e971c5
4 changed files with 14 additions and 21 deletions
|
@ -555,13 +555,11 @@ This replaces spaces, percents, and double quotes in STR with
|
|||
(string= (downcase t1) (downcase t2)))))
|
||||
|
||||
(defvar notmuch-multipart/alternative-discouraged
|
||||
'(
|
||||
;; Avoid HTML parts.
|
||||
'(;; Avoid HTML parts.
|
||||
"text/html"
|
||||
;; multipart/related usually contain a text/html part and some
|
||||
;; associated graphics.
|
||||
"multipart/related"
|
||||
))
|
||||
"multipart/related"))
|
||||
|
||||
(defun notmuch-multipart/alternative-determine-discouraged (msg)
|
||||
"Return the discouraged alternatives for the specified message."
|
||||
|
|
|
@ -297,13 +297,12 @@ position of the message in the thread."
|
|||
;;
|
||||
;; Any MIME part not explicitly mentioned here will be handled by an
|
||||
;; external viewer as configured in the various mailcap files.
|
||||
(let ((mm-inline-media-tests '(
|
||||
("text/.*" ignore identity)
|
||||
(let ((mm-inline-media-tests
|
||||
'(("text/.*" ignore identity)
|
||||
("application/pgp-signature" ignore identity)
|
||||
("multipart/alternative" ignore identity)
|
||||
("multipart/mixed" ignore identity)
|
||||
("multipart/related" ignore identity)
|
||||
)))
|
||||
("multipart/related" ignore identity))))
|
||||
(mm-display-parts (mm-dissect-buffer)))))
|
||||
|
||||
(defun notmuch-show-save-attachments ()
|
||||
|
@ -1791,10 +1790,8 @@ Reshows the current thread with matches defined by the new query-string."
|
|||
(if (notmuch-show-message-visible-p)
|
||||
(setq message-ids
|
||||
(append message-ids (list (notmuch-show-get-message-id)))))
|
||||
(setq done (not (notmuch-show-goto-message-next)))
|
||||
)
|
||||
message-ids
|
||||
)))
|
||||
(setq done (not (notmuch-show-goto-message-next))))
|
||||
message-ids)))
|
||||
|
||||
;; Commands typically bound to keys.
|
||||
|
||||
|
|
|
@ -1020,8 +1020,8 @@ the same as for the function notmuch-tree."
|
|||
(erase-buffer)
|
||||
(goto-char (point-min))
|
||||
(let* ((search-args (concat basic-query
|
||||
(if query-context (concat " and (" query-context ")"))
|
||||
))
|
||||
(if query-context
|
||||
(concat " and (" query-context ")"))))
|
||||
(message-arg (if unthreaded "--unthreaded" "--entire-thread")))
|
||||
(if (equal (car (process-lines notmuch-command "count" search-args)) "0")
|
||||
(setq search-args basic-query))
|
||||
|
|
|
@ -910,8 +910,7 @@ See `notmuch-tag' for information on the format of TAG-CHANGES."
|
|||
query)
|
||||
"*"))
|
||||
(t
|
||||
(concat "*notmuch-search-" query "*"))
|
||||
)))
|
||||
(concat "*notmuch-search-" query "*")))))
|
||||
|
||||
(defun notmuch-read-query (prompt)
|
||||
"Read a notmuch-query from the minibuffer with completion.
|
||||
|
@ -1003,8 +1002,7 @@ the configured default sort order."
|
|||
(let ((proc (get-buffer-process (current-buffer)))
|
||||
(inhibit-read-only t))
|
||||
(if proc
|
||||
(error "notmuch search process already running for query `%s'" query)
|
||||
)
|
||||
(error "notmuch search process already running for query `%s'" query))
|
||||
(erase-buffer)
|
||||
(goto-char (point-min))
|
||||
(save-excursion
|
||||
|
|
Loading…
Reference in a new issue