]> git.cworth.org Git - notmuch/blobdiff - emacs/notmuch-lib.el
emacs: notmuch-search-stash-thread-id: use notmuch-search-query-string
[notmuch] / emacs / notmuch-lib.el
index 3add992b46f1dbe4479f48576a77297b8d322da1..2fd9a27de8a352385fc00a3564d6d72645618016 100644 (file)
@@ -101,6 +101,7 @@ search results. Note that any filtered searches created by
 search."
   :type 'boolean
   :group 'notmuch-search)
+(make-variable-buffer-local 'notmuch-search-oldest-first)
 
 (defcustom notmuch-poll-script nil
   "[Deprecated] Command to run to incorporate new mail into the notmuch database.
@@ -247,7 +248,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 +484,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))