diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2021-01-10 15:01:00 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-01-15 06:38:43 -0400 |
| commit | 65fc5ea758b959ceec173b90e57cbca22f57c4a2 (patch) | |
| tree | db601008d59d0aaf4cea4426631d4cf4435e33c1 /emacs/notmuch-lib.el | |
| parent | 16b2db0986ce0ed7c420a69d0a98bb41e9ca4bd8 (diff) | |
emacs: various comment improvements
Diffstat (limited to 'emacs/notmuch-lib.el')
| -rw-r--r-- | emacs/notmuch-lib.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index 3add992b..72549a98 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -247,7 +247,7 @@ displays both values separately." (let* ((val (notmuch-command-to-string "config" "get" item)) (len (length val))) ;; Trim off the trailing newline (if the value is empty or not - ;; configured, there will be no newline) + ;; configured, there will be no newline). (if (and (> len 0) (= (aref val (- len 1)) ?\n)) (substring val 0 -1) @@ -483,8 +483,8 @@ be displayed." ;;; String Utilities (defun notmuch-prettify-subject (subject) - ;; This function is used by `notmuch-search-process-filter' which - ;; requires that we not disrupt its' matching state. + ;; This function is used by `notmuch-search-process-filter', + ;; which requires that we not disrupt its matching state. (save-match-data (if (and subject (string-match "^[ \t]*$" subject)) |
