1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-18 18:05:07 +00:00

Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs

This commit is contained in:
Eli Zaretskii 2019-09-28 22:11:38 +03:00
commit c49e36e67e
3 changed files with 13 additions and 8 deletions

View File

@ -104,17 +104,17 @@ Possible choices are nil (use default methods), `anonymous',
(defvoo nnimap-expunge 'on-exit
"When to expunge deleted messages.
If 'never, deleted articles are marked with the IMAP \\Delete
flag but not automatically expunged. If 'immediately, deleted
If `never', deleted articles are marked with the IMAP \\Delete
flag but not automatically expunged. If `immediately', deleted
articles are immediately expunged (this requires the server to
support the UID EXPUNGE command). If 'on-exit, deleted articles
are flagged, and all flagged articles are expunged when the
group is closed.
support the UID EXPUNGE command). If `on-exit', deleted articles
are flagged, and all flagged articles are expunged when the group
is closed.
For backwards compatibility, this variable may also be set to t
or nil. If the server supports UID EXPUNGE, both t and nil are
equivalent to 'immediately. If the server does not support UID
EXPUNGE nil is equivalent to 'never, while t will immediately
equivalent to `immediately'. If the server does not support UID
EXPUNGE nil is equivalent to `never', while t will immediately
expunge ALL articles that are currently flagged as deleted
(i.e., potentially not only the article that was just deleted).")

View File

@ -317,7 +317,7 @@ directory, like `default-directory'."
string))
(defcustom ibuffer-help-buffer-modes
'(help-mode apropos-mode Info-mode Info-edit-mode)
'(help-mode apropos-mode Info-mode)
"List of \"Help\" major modes."
:type '(repeat function))

View File

@ -78,6 +78,11 @@ This feature will be removed in future.")
(buffer-modified-p)
(message "Tags may have changed. Use Info-tagify if necessary")))
;; Moved here from definition of ibuffer-help-buffer-modes to make
;; that variable customizable even though this code is obsolete. See
;; also Bug#30990.
(add-to-list 'ibuffer-help-buffer-modes 'Info-edit-mode)
(provide 'info-edit)
;;; info-edit.el ends here