aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-09-28 21:09:30 +0200
committerLars Ingebrigtsen2019-09-28 21:10:10 +0200
commit8cd2eee70a6af700c0379e3e7126ef023293ee67 (patch)
tree4311134edf18a1ad04de27570726143f546282d1
parent6691a5c1ad1c1fe3c55821a4d34d1d2071dcbbdc (diff)
downloademacs-8cd2eee70a6af700c0379e3e7126ef023293ee67.tar.gz
emacs-8cd2eee70a6af700c0379e3e7126ef023293ee67.zip
Copy edit nnimap-expunge doc string
* lisp/gnus/nnimap.el (nnimap-expunge): Copy edit doc string.
-rw-r--r--lisp/gnus/nnimap.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el
index 2c91ba0bf5e..839399859de 100644
--- a/lisp/gnus/nnimap.el
+++ b/lisp/gnus/nnimap.el
@@ -104,17 +104,17 @@ Possible choices are nil (use default methods), `anonymous',
104 104
105(defvoo nnimap-expunge 'on-exit 105(defvoo nnimap-expunge 'on-exit
106 "When to expunge deleted messages. 106 "When to expunge deleted messages.
107If 'never, deleted articles are marked with the IMAP \\Delete 107If `never', deleted articles are marked with the IMAP \\Delete
108flag but not automatically expunged. If 'immediately, deleted 108flag but not automatically expunged. If `immediately', deleted
109articles are immediately expunged (this requires the server to 109articles are immediately expunged (this requires the server to
110support the UID EXPUNGE command). If 'on-exit, deleted articles 110support the UID EXPUNGE command). If `on-exit', deleted articles
111are flagged, and all flagged articles are expunged when the 111are flagged, and all flagged articles are expunged when the group
112group is closed. 112is closed.
113 113
114For backwards compatibility, this variable may also be set to t 114For backwards compatibility, this variable may also be set to t
115or nil. If the server supports UID EXPUNGE, both t and nil are 115or nil. If the server supports UID EXPUNGE, both t and nil are
116equivalent to 'immediately. If the server does not support UID 116equivalent to `immediately'. If the server does not support UID
117EXPUNGE nil is equivalent to 'never, while t will immediately 117EXPUNGE nil is equivalent to `never', while t will immediately
118expunge ALL articles that are currently flagged as deleted 118expunge ALL articles that are currently flagged as deleted
119(i.e., potentially not only the article that was just deleted).") 119(i.e., potentially not only the article that was just deleted).")
120 120