Function: mh-thread-set-tables

mh-thread-set-tables is a byte-compiled function defined in mh-thread.el.gz.

Signature

(mh-thread-set-tables FOLDER)

Documentation

Use the tables of FOLDER in current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-thread.el.gz
(defun mh-thread-set-tables (folder)
  "Use the tables of FOLDER in current buffer."
  (dolist (v '(mh-thread-id-hash
               mh-thread-subject-hash
               mh-thread-id-table
               mh-thread-id-index-map
               mh-thread-index-id-map
               mh-thread-scan-line-map
               mh-thread-subject-container-hash
               mh-thread-duplicates
               mh-thread-history))
    ;; Emacs >= 22.1: (buffer-local-value v folder).
    (set v (with-current-buffer folder (symbol-value v)))))