Mercurial > hg > xemacs-beta
comparison lisp/vm/vm-autoload.el @ 10:49a24b4fd526 r19-15b6
Import from CVS: tag r19-15b6
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:47:52 +0200 |
parents | ac2d302a0011 |
children | d95e72db5c07 |
comparison
equal
deleted
inserted
replaced
9:6f2bbbbbe05a | 10:49a24b4fd526 |
---|---|
5 | 5 |
6 The message will be physically deleted from the current folder the next | 6 The message will be physically deleted from the current folder the next |
7 time the current folder is expunged. | 7 time the current folder is expunged. |
8 | 8 |
9 With a prefix argument COUNT, the current message and the next | 9 With a prefix argument COUNT, the current message and the next |
10 COUNT - 1 messages are deleted. A negative argument means | 10 COUNT - 1 messages are deleted. A negative argument means the |
11 the current message and the previous |COUNT| - 1 messages are | 11 the current message and the previous |COUNT| - 1 messages are |
12 deleted. | 12 deleted. |
13 | 13 |
14 When invoked on marked messages (via vm-next-command-uses-marks), | 14 When invoked on marked messages (via vm-next-command-uses-marks), |
15 only marked messages are deleted, other messages are ignored." t nil) | 15 only marked messages are deleted, other messages are ignored." t nil) |
17 (autoload (quote vm-delete-message-backward) "vm-delete" "Like vm-delete-message, except the deletion direction is reversed." t nil) | 17 (autoload (quote vm-delete-message-backward) "vm-delete" "Like vm-delete-message, except the deletion direction is reversed." t nil) |
18 | 18 |
19 (autoload (quote vm-undelete-message) "vm-delete" "Remove the `deleted' attribute from the current message. | 19 (autoload (quote vm-undelete-message) "vm-delete" "Remove the `deleted' attribute from the current message. |
20 | 20 |
21 With a prefix argument COUNT, the current message and the next | 21 With a prefix argument COUNT, the current message and the next |
22 COUNT - 1 messages are undeleted. A negative argument means | 22 COUNT - 1 messages are undeleted. A negative argument means the |
23 the current message and the previous |COUNT| - 1 messages are | 23 the current message and the previous |COUNT| - 1 messages are |
24 deleted. | 24 deleted. |
25 | 25 |
26 When invoked on marked messages (via vm-next-command-uses-marks), | 26 When invoked on marked messages (via vm-next-command-uses-marks), |
27 only marked messages are undeleted, other messages are ignored." t nil) | 27 only marked messages are undeleted, other messages are ignored." t nil) |
98 DISCARD-REGEXP should be a regexp that matches headers to be discarded. | 98 DISCARD-REGEXP should be a regexp that matches headers to be discarded. |
99 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers | 99 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers |
100 to be forwarded. See the docs for vm-reorder-message-headers | 100 to be forwarded. See the docs for vm-reorder-message-headers |
101 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil) | 101 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil) |
102 | 102 |
103 (autoload (quote vm-rfc1521-encapsulate-messages) "vm-digest" "Encapsulate the messages in MESSAGE-LIST as per RFC 1521 (MIME). | |
104 The resulting digest is inserted at point in the current buffer. | |
105 MIME headers at point-max are added/updated. | |
106 Point is not moved. | |
107 | |
108 MESSAGE-LIST should be a list of message structs (real or virtual). | |
109 These are the messages that will be encapsulated. | |
110 KEEP-LIST should be a list of regexps matching headers to keep. | |
111 DISCARD-REGEXP should be a regexp that matches headers to be discarded. | |
112 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers | |
113 to be forwarded. See the docs for vm-reorder-message-headers | |
114 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil) | |
115 | |
116 (autoload (quote vm-rfc1153-or-rfc934-burst-message) "vm-digest" "Burst messages from the digest message M. | 103 (autoload (quote vm-rfc1153-or-rfc934-burst-message) "vm-digest" "Burst messages from the digest message M. |
117 M should be a message struct for a real message. | 104 M should be a message struct for a real message. |
118 If RFC1153 is non-nil, assume the digest is of the form specified by | 105 If RFC1153 is non-nil, assume the digest is of the form specified by |
119 RFC 1153. Otherwise assume RFC 934 digests." nil nil) | 106 RFC 1153. Otherwise assume RFC 934 digests." nil nil) |
120 | 107 |
138 | 125 |
139 (autoload (quote vm-burst-rfc934-digest) "vm-digest" "Burst an RFC 934 style digest" t nil) | 126 (autoload (quote vm-burst-rfc934-digest) "vm-digest" "Burst an RFC 934 style digest" t nil) |
140 | 127 |
141 (autoload (quote vm-burst-rfc1153-digest) "vm-digest" "Burst an RFC 1153 style digest" t nil) | 128 (autoload (quote vm-burst-rfc1153-digest) "vm-digest" "Burst an RFC 1153 style digest" t nil) |
142 | 129 |
143 (autoload (quote vm-burst-rfc1521-digest) "vm-digest" "Burst an RFC 1521 (MIME) style digest" t nil) | |
144 | |
145 (autoload (quote vm-guess-digest-type) "vm-digest" "Guess the digest type of the message M. | 130 (autoload (quote vm-guess-digest-type) "vm-digest" "Guess the digest type of the message M. |
146 M should be the message struct of a real message. | 131 M should be the message struct of a real message. |
147 Returns either \"rfc934\", \"rfc1153\", or \"rfc1521\"." nil nil) | 132 Returns either \"rfc934\" or \"rfc1153\"." nil nil) |
148 | 133 |
149 (autoload (quote vm-easy-menu-define) "vm-easymenu" "Define a menu bar submenu in maps MAPS, according to MENU. | 134 (autoload (quote vm-easy-menu-define) "vm-easymenu" "Define a menu bar submenu in maps MAPS, according to MENU. |
150 The menu keymap is stored in symbol SYMBOL, both as its value | 135 The menu keymap is stored in symbol SYMBOL, both as its value |
151 and as its function definition. DOC is used as the doc string for SYMBOL. | 136 and as its function definition. DOC is used as the doc string for SYMBOL. |
152 | 137 |
399 | 384 |
400 (autoload (quote vm-get-folder-type) "vm-folder" "Return a symbol indicating the folder type of the current buffer. | 385 (autoload (quote vm-get-folder-type) "vm-folder" "Return a symbol indicating the folder type of the current buffer. |
401 This function works by examining the beginning of a folder. | 386 This function works by examining the beginning of a folder. |
402 If optional arg FILE is present the type of FILE is returned instead. | 387 If optional arg FILE is present the type of FILE is returned instead. |
403 If optional second and third arg START and END are provided, | 388 If optional second and third arg START and END are provided, |
404 vm-get-folder-type will examine the text between those buffer | 389 vm-get-folder-type will examine the the text between those buffer |
405 positions. START and END default to 1 and (buffer-size) + 1. | 390 positions. START and END default to 1 and (buffer-size) + 1. |
406 | 391 |
407 Returns | 392 Returns |
408 nil if folder has no type (empty) | 393 nil if folder has no type (empty) |
409 unknown if the type is not known to VM | 394 unknown if the type is not known to VM |
568 Buffer Menu." t nil) | 553 Buffer Menu." t nil) |
569 | 554 |
570 (autoload (quote vm-quit-just-iconify) "vm-folder" "Iconify the frame and bury the current VM folder and summary buffers. | 555 (autoload (quote vm-quit-just-iconify) "vm-folder" "Iconify the frame and bury the current VM folder and summary buffers. |
571 The folder is not altered and Emacs is still visiting it." t nil) | 556 The folder is not altered and Emacs is still visiting it." t nil) |
572 | 557 |
573 (autoload (quote vm-quit-no-change) "vm-folder" "Exit VM without saving changes made to the folder." t nil) | 558 (autoload (quote vm-quit-no-change) "vm-folder" "Quit visiting the current folder without saving changes made to the folder." t nil) |
574 | 559 |
575 (autoload (quote vm-quit) "vm-folder" "Quit VM, saving changes. Deleted messages are not expunged." t nil) | 560 (autoload (quote vm-quit) "vm-folder" "Quit visiting the current folder, saving changes. Deleted messages are not expunged." t nil) |
576 | 561 |
577 (autoload (quote vm-start-itimers-if-needed) "vm-folder" nil nil nil) | 562 (autoload (quote vm-start-itimers-if-needed) "vm-folder" nil nil nil) |
578 | 563 |
579 (autoload (quote vm-get-mail-itimer-function) "vm-folder" nil nil nil) | 564 (autoload (quote vm-get-mail-itimer-function) "vm-folder" nil nil nil) |
580 | 565 |
1485 | 1470 |
1486 (autoload (quote vm-send-rfc934-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 934 digest." t nil) | 1471 (autoload (quote vm-send-rfc934-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 934 digest." t nil) |
1487 | 1472 |
1488 (autoload (quote vm-send-rfc1153-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1153 digest." t nil) | 1473 (autoload (quote vm-send-rfc1153-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1153 digest." t nil) |
1489 | 1474 |
1490 (autoload (quote vm-send-rfc1521-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1521 (MIME) digest." t nil) | |
1491 | |
1492 (autoload (quote vm-continue-composing-message) "vm-reply" "Find and select the most recently used mail composition buffer. | 1475 (autoload (quote vm-continue-composing-message) "vm-reply" "Find and select the most recently used mail composition buffer. |
1493 If the selected buffer is already a Mail mode buffer then it is | 1476 If the selected buffer is already a Mail mode buffer then it is |
1494 buried before beginning the search. Non Mail mode buffers and | 1477 buried before beginning the search. Non Mail mode buffers and |
1495 unmodified Mail buffers are skipped. Prefix arg means unmodified | 1478 unmodified Mail buffers are skipped. Prefix arg means unmodified |
1496 Mail mode buffers are not skipped. If no suitable buffer is | 1479 Mail mode buffers are not skipped. If no suitable buffer is |
1517 (autoload (quote vm-send-digest-other-frame) "vm-reply" "Like vm-send-digest, but run in a newly created frame." t nil) | 1500 (autoload (quote vm-send-digest-other-frame) "vm-reply" "Like vm-send-digest, but run in a newly created frame." t nil) |
1518 | 1501 |
1519 (autoload (quote vm-send-rfc934-digest-other-frame) "vm-reply" "Like vm-send-rfc934-digest, but run in a newly created frame." t nil) | 1502 (autoload (quote vm-send-rfc934-digest-other-frame) "vm-reply" "Like vm-send-rfc934-digest, but run in a newly created frame." t nil) |
1520 | 1503 |
1521 (autoload (quote vm-send-rfc1153-digest-other-frame) "vm-reply" "Like vm-send-rfc1153-digest, but run in a newly created frame." t nil) | 1504 (autoload (quote vm-send-rfc1153-digest-other-frame) "vm-reply" "Like vm-send-rfc1153-digest, but run in a newly created frame." t nil) |
1522 | |
1523 (autoload (quote vm-send-rfc1521-digest-other-frame) "vm-reply" "Like vm-send-rfc1521-digest, but run in a newly created frame." t nil) | |
1524 | 1505 |
1525 (autoload (quote vm-match-data) "vm-save" nil nil nil) | 1506 (autoload (quote vm-match-data) "vm-save" nil nil nil) |
1526 | 1507 |
1527 (autoload (quote vm-auto-select-folder) "vm-save" nil nil nil) | 1508 (autoload (quote vm-auto-select-folder) "vm-save" nil nil nil) |
1528 | 1509 |