mu4e: Shorten descriptions a bit

This commit is contained in:
Dirk-Jan C. Binnema 2023-09-20 22:31:19 +03:00
parent 67c8ff75a7
commit 8fc13ab8f3
23 changed files with 35 additions and 35 deletions

View File

@ -1,4 +1,4 @@
;;; mu4e-actions.el --- Actions for messages and attachments in mu4e -*- lexical-binding: t -*-
;;; mu4e-actions.el --- Actions for messages/attachments -*- lexical-binding: t -*-
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-bookmarks.el --- Bookmarks for mu4e -*- lexical-binding: t -*-
;;; mu4e-bookmarks.el --- Bookmarks handling -*- lexical-binding: t -*-
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-compose.el --- Various functions to compose/send messages from mu4e -*- lexical-binding: t -*-
;;; mu4e-compose.el --- Compose and send messages -*- lexical-binding: t -*-
;; Copyright (C) 2011-2022 Dirk-Jan C. Binnema

View File

@ -1,6 +1,6 @@
;;; mu4e-contacts.el -- part of mu4e -*- lexical-binding: t -*-
;;; mu4e-contacts.el -- Dealing with contacts -*- lexical-binding: t -*-
;; Copyright (C) 2022 Dirk-Jan C. Binnema
;; Copyright (C) 2022-2023 Dirk-Jan C. Binnema
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
@ -81,10 +81,10 @@ their canonical counterpart; useful as an example."
(make-obsolete-variable 'mu4e-contact-rewrite-function
"mu4e-contact-process-function (see docstring)"
"mu4e 1.3.2")
"mu4e 1.3.2")
(make-obsolete-variable 'mu4e-compose-complete-ignore-address-regexp
"mu4e-contact-process-function (see docstring)"
"mu4e 1.3.2")
"mu4e 1.3.2")
(defcustom mu4e-contact-process-function
(lambda(addr)
@ -165,7 +165,7 @@ with both the plain addresses and /regular expressions/."
'mu4e-user-mail-address-list "0.9.9.x")
(make-obsolete-variable 'mu4e-user-mail-address-list
"determined by server; see `mu4e-personal-addresses'."
"1.3.8")
"1.3.8")
;; Helpers
@ -231,9 +231,9 @@ case a phrase contains a quote, it will be escaped."
(defun mu4e-contact-full (contact)
"Get the full combination of name and email address from CONTACT."
(let* ((email (mu4e-contact-email contact))
(name (mu4e-contact-name contact)))
(name (mu4e-contact-name contact)))
(if (and name (> (length name) 0))
(format "%s <%s>" (mu4e--rfc822-quote-phrase name) email)
(format "%s <%s>" (mu4e--rfc822-quote-phrase name) email)
email)))
@ -249,9 +249,9 @@ This is used by the completion function in mu4e-compose."
(dolist (contact contacts)
(cl-incf n)
(when (functionp mu4e-contact-process-function)
(setq contact (funcall mu4e-contact-process-function contact)))
(setq contact (funcall mu4e-contact-process-function contact)))
(when contact ;; note the explicit deccode; the strings we get are
;; utf-8, but emacs doesn't know yet.
;; utf-8, but emacs doesn't know yet.
(puthash (decode-coding-string contact 'utf-8) t mu4e--contacts-set)))
(setq mu4e--contacts-tstamp (or tstamp "0"))
(unless (zerop n)
@ -265,7 +265,7 @@ For testing/debugging."
(with-current-buffer (get-buffer-create "*mu4e-contacts-info*")
(erase-buffer)
(insert (format "complete addresses: %s\n"
(if mu4e-compose-complete-addresses "yes" "no")))
(if mu4e-compose-complete-addresses "yes" "no")))
(insert (format "only personal addresses: %s\n"
(if mu4e-compose-complete-only-personal "yes" "no")))
(insert (format "only addresses seen after: %s\n"
@ -275,7 +275,7 @@ For testing/debugging."
(insert (format "number of contacts cached: %d\n\n"
(hash-table-count mu4e--contacts-set)))
(maphash (lambda (contact _)
(insert (format "%s\n" contact))) mu4e--contacts-set))
(insert (format "%s\n" contact))) mu4e--contacts-set))
(pop-to-buffer "*mu4e-contacts-info*")))
(declare-function mu4e--server-contacts "mu4e-server")

View File

@ -1,4 +1,4 @@
;;; mu4e-context.el --- Contexts to switch between accounts in mu4e -*- lexical-binding: t -*-
;;; mu4e-context.el --- Switching between settings -*- lexical-binding: t -*-
;; Copyright (C) 2015-2023 Dirk-Jan C. Binnema

View File

@ -1,6 +1,6 @@
;;; mu4e-contrib.el --- Some user-contributed functions for mu4e -*- lexical-binding: t -*-
;;; mu4e-contrib.el --- User-contributed functions -*- lexical-binding: t -*-
;; Copyright (C) 2013-2022 Dirk-Jan C. Binnema
;; Copyright (C) 2013-2023 Dirk-Jan C. Binnema
;; This file is not part of GNU Emacs.

View File

@ -1,6 +1,6 @@
;;; mu4e-draft.el --- various functions to create draft messages in mu4e -*- lexical-binding: t -*-
;;; mu4e-draft.el --- Creating draft messages -*- lexical-binding: t -*-
;;
;; Copyright (C) 2011-2022 Dirk-Jan C. Binnema
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>

View File

@ -1,4 +1,4 @@
;;; mu4e-folders.el --- Dealing with maildirs & folders in mu4e -*- lexical-binding: t -*-
;;; mu4e-folders.el --- Dealing with maildirs & folders -*- lexical-binding: t -*-
;; Copyright (C) 2021-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-headers.el --- Functions related to mu4e-headers-mode -*- lexical-binding: t; coding:utf-8 -*-
;;; mu4e-headers.el --- Message headers -*- lexical-binding: t; coding:utf-8 -*-
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-helpers.el --- Helper functions used in mu4e -*- lexical-binding: t -*-
;;; mu4e-helpers.el --- Helper functions -*- lexical-binding: t -*-
;; Copyright (C) 2022-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-icalendar.el --- Icalendar and diary integration in mu4e -*- lexical-binding: t; -*-
;;; mu4e-icalendar.el --- iCcalendar & diary integration -*- lexical-binding: t; -*-
;; Copyright (C) 2019-2023 Christophe Troestler

View File

@ -1,4 +1,4 @@
;;; mu4e-lists.el --- Create tables of list-id -> shortname for mailing lists in mu4e -*- lexical-binding: t -*-
;;; mu4e-lists.el --- Get names for mailing lists -*- lexical-binding: t -*-
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-mark.el --- functions related to marking messages in mu4e -*- lexical-binding: t -*-
;;; mu4e-mark.el --- Marking messages -*- lexical-binding: t -*-
;; Copyright (C) 2011-2022 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-message.el --- Functions to get data from mu4e-message plist structure -*- lexical-binding: t -*-
;;; mu4e-message.el --- Working with mu4e-message plists -*- lexical-binding: t -*-
;; Copyright (C) 2012-2022 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-mime-parts.el --- Implements functions and variables for dealing with MIME-parts and URLs -*- lexical-binding: t -*-
;;; mu4e-mime-parts.el --- Dealing with MIME-parts & URLs -*- lexical-binding: t -*-
;; Copyright (C) 2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-notification.el --- Generic support for showing new-mail notifications from mu4e -*- coding: utf-8; lexical-binding: t -*-
;;; mu4e-notification.el --- Showing mail notifications -*- lexical-binding: t-*-
;;
;; Copyright (C) 1996-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>

View File

@ -1,4 +1,4 @@
;;; mu4e-obsolete-vars.el --- Obsolete variables and functions aliases for mu4e -*- lexical-binding: t -*-
;;; mu4e-obsolete-vars.el --- Obsolete things -*- lexical-binding: t -*-
;; Copyright (C) 2022 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-query-items.el --- Queries for bookmarks and items for mu4e -*- lexical-binding: t -*-
;;; mu4e-query-items.el --- Manage query results -*- lexical-binding: t -*-
;; Copyright (C) 2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-search.el --- Search-related functions for mu4e -*- lexical-binding: t -*-
;;; mu4e-search.el --- Search-related functions -*- lexical-binding: t -*-
;; Copyright (C) 2021,2022 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-thread.el --- Thread folding support for mu4e -*- lexical-binding: t -*-
;;; mu4e-thread.el --- Thread folding support -*- lexical-binding: t -*-
;; Copyright (C) 2023 Nicolas P. Rougier

View File

@ -1,4 +1,4 @@
;;; mu4e-view.el --- Define mu4e-view-mode for viewing e-mail messages in mu4e -*- lexical-binding: t -*-
;;; mu4e-view.el --- Mode for viewing e-mail messages -*- lexical-binding: t -*-
;; Copyright (C) 2021-2023 Dirk-Jan C. Binnema

View File

@ -1,4 +1,4 @@
;;; mu4e-window.el --- window management for mu4e -*- lexical-binding: t; -*-
;;; mu4e-window.el --- Window management -*- lexical-binding: t; -*-
;; Copyright (C) 2022 Mickey Petersen

View File

@ -1,4 +1,4 @@
;;; mu4e.el --- part of mu4e, the mu mail user agent -*- lexical-binding: t -*-
;;; mu4e.el --- Mu4e, the mu mail user agent -*- lexical-binding: t -*-
;; Copyright (C) 2011-2023 Dirk-Jan C. Binnema