aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e
diff options
context:
space:
mode:
authorPaul Eggert2016-11-04 15:02:03 -0700
committerPaul Eggert2016-11-04 15:02:03 -0700
commitae0a1a890ec7b885e85cd945a21ca42fed80df3d (patch)
tree495f1d851cb3a43a0e677bff9c09d4211a35fbde /lisp/mh-e
parent66b5222c3cd72839bf72e0b2a03912719c930451 (diff)
parentacae275b2752357497a2411876b83240ce7c8aec (diff)
downloademacs-ae0a1a890ec7b885e85cd945a21ca42fed80df3d.tar.gz
emacs-ae0a1a890ec7b885e85cd945a21ca42fed80df3d.zip
Merge from origin/emacs-25
acae275 ; Spelling fixes d8fac73 Update README for precompiled windows Emacs. 23570fd Clarify documentation of 'vc-responsible-backend' wrt symlinks f708cb2 Clarify doc string of 'transpose-sexps' cd05b1d Fix docstring of 'browse-url-firefox-new-window-is-tab' bdc89eb Improve documentation of 'font-lock-remove-keywords' 4a0c590 Fix documentation of the command summary key 0221b7a Mark relocation workarounds with REL_ALLOC
Diffstat (limited to 'lisp/mh-e')
-rw-r--r--lisp/mh-e/mh-search.el4
-rw-r--r--lisp/mh-e/mh-thread.el8
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-search.el b/lisp/mh-e/mh-search.el
index 6e607444ad8..d5a2d779b21 100644
--- a/lisp/mh-e/mh-search.el
+++ b/lisp/mh-e/mh-search.el
@@ -1859,7 +1859,7 @@ PROC is used to convert the value to actual data."
1859(defun mh-index-update-maps (folder &optional origin-map) 1859(defun mh-index-update-maps (folder &optional origin-map)
1860 "Annotate all as yet unannotated messages in FOLDER with their MD5 hash. 1860 "Annotate all as yet unannotated messages in FOLDER with their MD5 hash.
1861As a side effect msg -> checksum map is updated. Optional 1861As a side effect msg -> checksum map is updated. Optional
1862argument ORIGIN-MAP is a hashtable which maps each message in the 1862argument ORIGIN-MAP is a hash table which maps each message in the
1863index folder to the original folder and message from whence it 1863index folder to the original folder and message from whence it
1864was copied. If present the checksum -> (origin-folder, 1864was copied. If present the checksum -> (origin-folder,
1865origin-index) map is updated too." 1865origin-index) map is updated too."
@@ -1913,7 +1913,7 @@ origin-index) map is updated too."
1913(defun mh-index-update-single-msg (msg checksum origin-map) 1913(defun mh-index-update-single-msg (msg checksum origin-map)
1914 "Update various maps for one message. 1914 "Update various maps for one message.
1915MSG is a index folder message, CHECKSUM its MD5 hash and 1915MSG is a index folder message, CHECKSUM its MD5 hash and
1916ORIGIN-MAP, if non-nil, a hashtable containing which maps each 1916ORIGIN-MAP, if non-nil, a hash table containing which maps each
1917message in the index folder to the folder and message that it was 1917message in the index folder to the folder and message that it was
1918copied from. The function updates the hash tables 1918copied from. The function updates the hash tables
1919`mh-index-msg-checksum-map' and `mh-index-checksum-origin-map'. 1919`mh-index-msg-checksum-map' and `mh-index-checksum-origin-map'.
diff --git a/lisp/mh-e/mh-thread.el b/lisp/mh-e/mh-thread.el
index e6acdba8b30..2a37cfc9e42 100644
--- a/lisp/mh-e/mh-thread.el
+++ b/lisp/mh-e/mh-thread.el
@@ -89,11 +89,11 @@
89 (real-child-p t)) 89 (real-child-p t))
90 90
91(defvar mh-thread-id-hash nil 91(defvar mh-thread-id-hash nil
92 "Hashtable used to canonicalize message identifiers.") 92 "Hash table used to canonicalize message identifiers.")
93(make-variable-buffer-local 'mh-thread-id-hash) 93(make-variable-buffer-local 'mh-thread-id-hash)
94 94
95(defvar mh-thread-subject-hash nil 95(defvar mh-thread-subject-hash nil
96 "Hashtable used to canonicalize subject strings.") 96 "Hash table used to canonicalize subject strings.")
97(make-variable-buffer-local 'mh-thread-subject-hash) 97(make-variable-buffer-local 'mh-thread-subject-hash)
98 98
99(defvar mh-thread-id-table nil 99(defvar mh-thread-id-table nil
@@ -109,11 +109,11 @@
109(make-variable-buffer-local 'mh-thread-id-index-map) 109(make-variable-buffer-local 'mh-thread-id-index-map)
110 110
111(defvar mh-thread-subject-container-hash nil 111(defvar mh-thread-subject-container-hash nil
112 "Hashtable used to group messages by subject.") 112 "Hash table used to group messages by subject.")
113(make-variable-buffer-local 'mh-thread-subject-container-hash) 113(make-variable-buffer-local 'mh-thread-subject-container-hash)
114 114
115(defvar mh-thread-duplicates nil 115(defvar mh-thread-duplicates nil
116 "Hashtable used to associate messages with the same message identifier.") 116 "Hash table used to associate messages with the same message identifier.")
117(make-variable-buffer-local 'mh-thread-duplicates) 117(make-variable-buffer-local 'mh-thread-duplicates)
118 118
119(defvar mh-thread-history () 119(defvar mh-thread-history ()