mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-04 16:38:14 +01:00
emacs: Increase consistency of library headers
This commit is contained in:
parent
73b8f0b8d7
commit
df3fab18fe
12 changed files with 67 additions and 51 deletions
|
@ -1,4 +1,4 @@
|
||||||
;; make-deps.el --- compute make dependencies for Elisp sources
|
;;; make-deps.el --- compute make dependencies for Elisp sources
|
||||||
;;
|
;;
|
||||||
;; Copyright © Austin Clements
|
;; Copyright © Austin Clements
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,29 +1,34 @@
|
||||||
;;; notmuch-company.el --- Mail address completion for notmuch via company-mode -*- lexical-binding: t -*-
|
;;; notmuch-company.el --- Mail address completion for notmuch via company-mode -*- lexical-binding: t -*-
|
||||||
|
|
||||||
;; Authors: Trevor Jim <tjim@mac.com>
|
|
||||||
;; Michal Sojka <sojkam1@fel.cvut.cz>
|
|
||||||
;;
|
;;
|
||||||
;; Keywords: mail, completion
|
;; Copyright © Trevor Jim
|
||||||
|
;; Copyright © Michal Sojka
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;;
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; This file is part of Notmuch.
|
||||||
|
;;
|
||||||
|
;; Notmuch is free software: you can redistribute it and/or modify it
|
||||||
|
;; under the terms of the GNU General Public License as published by
|
||||||
;; the Free Software Foundation, either version 3 of the License, or
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
;; (at your option) any later version.
|
;; (at your option) any later version.
|
||||||
|
;;
|
||||||
;; This program is distributed in the hope that it will be useful,
|
;; Notmuch is distributed in the hope that it will be useful, but
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
;; GNU General Public License for more details.
|
;; General Public License for more details.
|
||||||
|
;;
|
||||||
;; You should have received a copy of the GNU General Public License
|
;; You should have received a copy of the GNU General Public License
|
||||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
;;
|
||||||
|
;; Authors: Trevor Jim <tjim@mac.com>
|
||||||
|
;; Michal Sojka <sojkam1@fel.cvut.cz>
|
||||||
|
;; Keywords: mail, completion
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; To enable this, install company mode (https://company-mode.github.io/)
|
;; Mail address completion for notmuch via company-mode. To enable
|
||||||
|
;; this, install company mode from <https://company-mode.github.io/>.
|
||||||
;;
|
;;
|
||||||
;; NB company-minimum-prefix-length defaults to 3 so you don't get
|
;; NB company-minimum-prefix-length defaults to 3 so you don't get
|
||||||
;; completion unless you type 3 characters
|
;; completion unless you type 3 characters.
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,26 @@
|
||||||
;; Compatibility functions for earlier versions of emacs
|
;;; notmuch-compat.el --- compatibility functions for earlier versions of emacs
|
||||||
|
;;
|
||||||
;; The functions in this file are copied from more modern versions of
|
;; The functions in this file are copied from more modern versions of
|
||||||
;; emacs and are Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2017
|
;; emacs and are Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2017
|
||||||
;; Free Software Foundation, Inc.
|
;; Free Software Foundation, Inc.
|
||||||
|
;;
|
||||||
|
;; This file is part of Notmuch.
|
||||||
|
;;
|
||||||
|
;; Notmuch is free software: you can redistribute it and/or modify it
|
||||||
|
;; under the terms of the GNU General Public License as published by
|
||||||
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
|
;; (at your option) any later version.
|
||||||
|
;;
|
||||||
|
;; Notmuch is distributed in the hope that it will be useful, but
|
||||||
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
;; General Public License for more details.
|
||||||
|
;;
|
||||||
|
;; You should have received a copy of the GNU General Public License
|
||||||
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
;; emacs master has a bugfix for folding long headers when sending
|
;; emacs master has a bugfix for folding long headers when sending
|
||||||
;; messages. Include the fix for earlier versions of emacs. To avoid
|
;; messages. Include the fix for earlier versions of emacs. To avoid
|
||||||
;; interfering with gnus we only run the hook when called from
|
;; interfering with gnus we only run the hook when called from
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
;;; notmuch-crypto.el --- functions for handling display of cryptographic metadata.
|
;;; notmuch-crypto.el --- functions for handling display of cryptographic metadata
|
||||||
;;
|
;;
|
||||||
;; Copyright © Jameson Rollins
|
;; Copyright © Jameson Rollins
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
;;
|
;;
|
||||||
;; Authors: Carl Worth <cworth@cworth.org>
|
;; Authors: Carl Worth <cworth@cworth.org>
|
||||||
|
|
||||||
;; This is an part of an emacs-based interface to the notmuch mail system.
|
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
|
|
|
@ -1,24 +1,23 @@
|
||||||
;;; notmuch-maildir-fcc.el ---
|
;;; notmuch-maildir-fcc.el --- inserting using a fcc handler
|
||||||
|
|
||||||
;; This file is free software; you can redistribute it and/or modify
|
|
||||||
;; it under the terms of the GNU General Public License as published
|
|
||||||
;; by the Free Software Foundation; either version 2, or (at your
|
|
||||||
;; option) any later version.
|
|
||||||
|
|
||||||
;; This program is distributed in the hope that it will be useful,
|
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
;; GNU General Public License for more details.
|
|
||||||
|
|
||||||
|
;; Copyright © Jesse Rosenthal
|
||||||
|
;;
|
||||||
|
;; This file is part of Notmuch.
|
||||||
|
;;
|
||||||
|
;; Notmuch is free software: you can redistribute it and/or modify it
|
||||||
|
;; under the terms of the GNU General Public License as published by
|
||||||
|
;; the Free Software Foundation, either version 3 of the License, or
|
||||||
|
;; (at your option) any later version.
|
||||||
|
;;
|
||||||
|
;; Notmuch is distributed in the hope that it will be useful, but
|
||||||
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
;; General Public License for more details.
|
||||||
|
;;
|
||||||
;; You should have received a copy of the GNU General Public License
|
;; You should have received a copy of the GNU General Public License
|
||||||
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
||||||
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
;;
|
||||||
;; Boston, MA 02110-1301, USA.
|
;; Authors: Jesse Rosenthal <jrosenthal@jhu.edu>
|
||||||
|
|
||||||
;;; Commentary:
|
|
||||||
|
|
||||||
;; To use this as the fcc handler for message-mode,
|
|
||||||
;; customize the notmuch-fcc-dirs variable
|
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
;;; notmuch-print.el --- printing messages from notmuch.
|
;;; notmuch-print.el --- printing messages from notmuch
|
||||||
;;
|
;;
|
||||||
;; Copyright © David Edmondson
|
;; Copyright © David Edmondson
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
;;; notmuch-show.el --- displaying notmuch forests.
|
;;; notmuch-show.el --- displaying notmuch forests
|
||||||
;;
|
;;
|
||||||
;; Copyright © Carl Worth
|
;; Copyright © Carl Worth
|
||||||
;; Copyright © David Edmondson
|
;; Copyright © David Edmondson
|
||||||
|
|
|
@ -20,9 +20,8 @@
|
||||||
;;
|
;;
|
||||||
;; Authors: Carl Worth <cworth@cworth.org>
|
;; Authors: Carl Worth <cworth@cworth.org>
|
||||||
;; Damien Cassou <damien.cassou@gmail.com>
|
;; Damien Cassou <damien.cassou@gmail.com>
|
||||||
;;
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
;;
|
|
||||||
|
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(eval-when-compile
|
(eval-when-compile
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
;;; notmuch-tree.el --- displaying notmuch forests.
|
;;; notmuch-tree.el --- displaying notmuch forests
|
||||||
;;
|
;;
|
||||||
;; Copyright © Carl Worth
|
;; Copyright © Carl Worth
|
||||||
;; Copyright © David Edmondson
|
;; Copyright © David Edmondson
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
;;; notmuch-version.el --- Version of notmuch
|
;;; notmuch-version.el --- version of notmuch -*- emacs-lisp -*-
|
||||||
;; -*- emacs-lisp -*-
|
|
||||||
;;
|
;;
|
||||||
;; %AG%
|
;; %AG%
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
||||||
;;
|
;;
|
||||||
;; Authors: Carl Worth <cworth@cworth.org>
|
;; Authors: Carl Worth <cworth@cworth.org>
|
||||||
;; Homepage: https://notmuchmail.org/
|
;; Homepage: https://notmuchmail.org
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
;;
|
;;
|
||||||
;; TL;DR: notmuch-emacs from MELPA and notmuch from distro packages is
|
;; TL;DR: notmuch-emacs from MELPA and notmuch from distro packages is
|
||||||
;; NOT SUPPORTED.
|
;; NOT SUPPORTED.
|
||||||
;;
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(eval-when-compile (require 'cl-lib))
|
(eval-when-compile (require 'cl-lib))
|
||||||
|
|
Loading…
Reference in a new issue