emacs: Closing parenthesis go on the same line

This commit is contained in:
Jonas Bernoulli 2020-08-08 13:49:39 +02:00 committed by David Bremner
parent caaa108760
commit 2ee8e971c5
4 changed files with 14 additions and 21 deletions

View file

@ -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."

View file

@ -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.

View file

@ -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))

View file

@ -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