Mercurial > emacs
annotate lispref/two.el @ 69728:fb125d0913e5
* mh-e.el (mh-defcustom, mh-defface, mh-defgroup): Macros to remove
new :package-version keyword in older settings.
(customize-package-emacs-version-alist): Add MH-E version to Emacs
version mappings.
(mh-e, mh-alias, mh-folder, mh-folder-selection)
(mh-identity, mh-inc, mh-junk, mh-letter, mh-ranges)
(mh-scan-line-formats, mh-search, mh-sending-mail)
(mh-sequences, mh-show, mh-speedbar, mh-thread, mh-tool-bar)
(mh-hooks, mh-faces): Add :package-version keyword to these groups.
(mh-alias-completion-ignore-case-flag)
(mh-alias-expand-aliases-flag, mh-alias-flash-on-comma)
(mh-alias-insert-file, mh-alias-insertion-location)
(mh-alias-local-users, mh-alias-local-users-prefix)
(mh-alias-passwd-gecos-comma-separator-flag)
(mh-new-messages-folders, mh-ticked-messages-folders)
(mh-large-folder, mh-recenter-summary-flag)
(mh-recursive-folders-flag, mh-sortm-args)
(mh-default-folder-for-message-function)
(mh-default-folder-list, mh-default-folder-must-exist-flag)
(mh-default-folder-prefix, mh-identity-list)
(mh-auto-fields-list, mh-auto-fields-prompt-flag)
(mh-identity-default, mh-identity-handlers, mh-inc-prog)
(mh-inc-spool-list, mh-junk-background, mh-junk-disposition)
(mh-junk-program, mh-compose-insertion)
(mh-compose-skipped-header-fields)
(mh-compose-space-does-completion-flag)
(mh-delete-yanked-msg-window-flag)
(mh-extract-from-attribution-verb, mh-ins-buf-prefix)
(mh-letter-complete-function, mh-letter-fill-column)
(mh-mml-method-default, mh-signature-file-name)
(mh-signature-separator-flag, mh-x-face-file)
(mh-yank-behavior, mh-interpret-number-as-range-flag)
(mh-adaptive-cmd-note-flag, mh-scan-format-file, mh-scan-prog)
(mh-search-program, mh-compose-forward-as-mime-flag)
(mh-compose-letter-function, mh-compose-prompt-flag)
(mh-forward-subject-format, mh-insert-x-mailer-flag)
(mh-redist-full-contents-flag, mh-reply-default-reply-to)
(mh-reply-show-message-flag)
(mh-refile-preserves-sequences-flag, mh-tick-seq)
(mh-update-sequences-after-mh-show-flag)
(mh-bury-show-buffer-flag, mh-clean-message-header-flag)
(mh-decode-mime-flag)
(mh-display-buttons-for-alternatives-flag)
(mh-display-buttons-for-inline-parts-flag)
(mh-do-not-confirm-flag, mh-fetch-x-image-url)
(mh-graphical-smileys-flag, mh-graphical-emphasis-flag)
(mh-highlight-citation-style, mh-invisible-header-fields)
(mh-invisible-header-fields-default, mh-lpr-command-format)
(mh-max-inline-image-height, mh-max-inline-image-width)
(mh-mhl-format-file, mh-mime-save-parts-default-directory)
(mh-print-background-flag, mh-show-maximum-size)
(mh-show-use-xface-flag, mh-store-default-directory)
(mh-summary-height, mh-speed-update-interval)
(mh-show-threads-flag, mh-tool-bar-search-function): Add
:package-version keyword to these options.
(mh-after-commands-processed-hook)
(mh-alias-reloaded-hook, mh-before-commands-processed-hook)
(mh-before-quit-hook, mh-before-send-letter-hook)
(mh-delete-msg-hook, mh-find-path-hook, mh-folder-mode-hook)
(mh-forward-hook, mh-inc-folder-hook)
(mh-insert-signature-hook)
(mh-kill-folder-suppress-prompt-hooks, mh-letter-mode-hook)
(mh-mh-to-mime-hook, mh-search-mode-hook, mh-quit-hook)
(mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
(mh-unseen-updated-hook): Add :package-version keyword to these hooks.
(mh-min-colors-defined-flag)
(mh-folder-address, mh-folder-body, mh-folder-cur-msg-number)
(mh-folder-date, mh-folder-deleted, mh-folder-followup)
(mh-folder-msg-number, mh-folder-refiled)
(mh-folder-sent-to-me-hint, mh-folder-sent-to-me-sender)
(mh-folder-subject, mh-folder-tick, mh-folder-to)
(mh-letter-header-field, mh-search-folder, mh-show-cc)
(mh-show-date, mh-show-from, mh-show-header, mh-show-pgg-bad)
(mh-show-pgg-good, mh-show-pgg-unknown, mh-show-signature)
(mh-show-subject, mh-show-to, mh-show-xface)
(mh-speedbar-folder, mh-speedbar-folder-with-unseen-messages)
(mh-speedbar-selected-folder)
(mh-speedbar-selected-folder-with-unseen-messages): : Add
:package-version keyword to these faces.
* mh-tool-bar.el (mh-tool-bar-define): Added commented-out
:package-version keywords.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Thu, 30 Mar 2006 23:39:32 +0000 |
parents | 695cf19ef79e |
children | 9f4849fee703 375f2633d815 |
rev | line source |
---|---|
41193 | 1 ;; Auxilary functions for preparing a two volume manual. |
2 ;; --rjc 30mar92 | |
3 | |
4 (defun volume-aux-markup (arg) | |
5 "Append `vol. NUMBER' to page number. | |
6 Apply to aux file that you save. | |
7 Then insert marked file into other volume's .aux file." | |
8 (interactive "sType volume number, 1 or 2: " ) | |
9 (goto-char (point-min)) | |
10 (while (search-forward "-pg" nil t) | |
11 (end-of-line 1) | |
12 (delete-backward-char 1 nil) | |
13 (insert ", vol.'tie" arg "}"))) | |
14 | |
15 (defun volume-index-markup (arg) | |
16 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
17 Apply only to unsorted index file, |
41193 | 18 Then insert marked file into other volume's unsorted index file. |
19 Then run texindex on that file and save." | |
20 (interactive | |
21 "sType volume number, roman number I or II: " ) | |
22 (goto-char (point-min)) | |
23 (while (search-forward "\\entry" nil t) | |
24 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
25 (insert arg ":"))) | |
26 | |
27 (defun volume-numbers-toc-markup (arg) | |
28 (interactive | |
29 "sType volume number, roman number I or II: " ) | |
30 (goto-char (point-min)) | |
31 (while (search-forward "chapentry" nil t) | |
32 (end-of-line) | |
33 (search-backward "{" nil t) | |
34 (forward-char 1) | |
35 (insert arg ":"))) | |
36 | |
37 (defun volume-header-toc-markup () | |
38 "Insert Volume I and Volume II text into .toc file. | |
39 NOTE: this auxilary function is file specific. | |
40 This is for the *Elisp Ref Manual*" | |
41 (interactive) | |
42 (goto-char (point-min)) | |
43 (insert "\\unnumbchapentry {Volume 1}{}\n\\unnumbchapentry {}{}\n") | |
44 (search-forward "\\unnumbchapentry {Index}") | |
45 (forward-line 1) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
46 (insert |
41193 | 47 "\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {Volume 2}{}\n\\unnumbchapentry {}{}\n")) |
48 | |
49 | |
50 ;;; In batch mode, you cannot call functions with args; hence this kludge: | |
51 | |
52 (defun volume-aux-markup-1 () (volume-aux-markup "1")) | |
53 (defun volume-aux-markup-2 () (volume-aux-markup "2")) | |
54 | |
55 (defun volume-index-markup-I () (volume-index-markup "I")) | |
56 (defun volume-index-markup-II () (volume-index-markup "II")) | |
57 | |
58 (defun volume-numbers-toc-markup-I () (volume-numbers-toc-markup "I")) | |
59 (defun volume-numbers-toc-markup-II () (volume-numbers-toc-markup "II")) | |
52401 | 60 |
61 ;;; arch-tag: 848955fe-e9cf-45e7-a2f1-570ef156d6a5 |