diff options
| author | Tomi Ollila <tomi.ollila@iki.fi> | 2021-01-16 19:17:09 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-06-05 08:24:51 -0300 |
| commit | 03366a3c5aa313de41bddd61dedc5b5c002e0469 (patch) | |
| tree | 6aaeee898eb42b4d68c5e093f62c9dacfec00aa4 /emacs/notmuch.el | |
| parent | d7ddfa0d0ec62c10ecd60779ca1edd9b6973593b (diff) | |
emacs: fix declare-function definitions with related line breaks
- declare-function notmuch-unthreaded lacked file name
- declare-function notmuch-search had differently named last arg
- note: check-declare-directory did not complain about that
- declare-function notmuch-search-show-thread without nil
- some functions declared to be in different file than those
existed ("notmuch" -> "notmuch-lib")
- some related function/declare lines were (/are now) wider than
80-columns; added line breaks (and proper indentation) there
Diffstat (limited to 'emacs/notmuch.el')
| -rw-r--r-- | emacs/notmuch.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 3e2713e2..351334aa 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -973,7 +973,8 @@ PROMPT is the string to prompt with." (put 'notmuch-search 'notmuch-doc "Search for messages.") ;;;###autoload -(defun notmuch-search (&optional query oldest-first target-thread target-line no-display) +(defun notmuch-search (&optional query oldest-first target-thread target-line + no-display) "Display threads matching QUERY in a notmuch-search buffer. If QUERY is nil, it is read interactively from the minibuffer. |
