aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-09-28 22:11:38 +0300
committerEli Zaretskii2019-09-28 22:11:38 +0300
commitc49e36e67e127417782770d63afc378cd232344e (patch)
tree8ea8e8a84f1da980b9e31c309aa4bb78194f1322
parentfc3ba91a57bbaf5344e8de3fdbe3a0371f126fcb (diff)
parent8cd2eee70a6af700c0379e3e7126ef023293ee67 (diff)
downloademacs-c49e36e67e127417782770d63afc378cd232344e.tar.gz
emacs-c49e36e67e127417782770d63afc378cd232344e.zip
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
-rw-r--r--lisp/gnus/nnimap.el14
-rw-r--r--lisp/ibuffer.el2
-rw-r--r--lisp/obsolete/info-edit.el5
3 files changed, 13 insertions, 8 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
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 3af06eba97e..c81b05efec6 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -317,7 +317,7 @@ directory, like `default-directory'."
317 string)) 317 string))
318 318
319(defcustom ibuffer-help-buffer-modes 319(defcustom ibuffer-help-buffer-modes
320 '(help-mode apropos-mode Info-mode Info-edit-mode) 320 '(help-mode apropos-mode Info-mode)
321 "List of \"Help\" major modes." 321 "List of \"Help\" major modes."
322 :type '(repeat function)) 322 :type '(repeat function))
323 323
diff --git a/lisp/obsolete/info-edit.el b/lisp/obsolete/info-edit.el
index b64e84003fc..55c52b5abdb 100644
--- a/lisp/obsolete/info-edit.el
+++ b/lisp/obsolete/info-edit.el
@@ -78,6 +78,11 @@ This feature will be removed in future.")
78 (buffer-modified-p) 78 (buffer-modified-p)
79 (message "Tags may have changed. Use Info-tagify if necessary"))) 79 (message "Tags may have changed. Use Info-tagify if necessary")))
80 80
81;; Moved here from definition of ibuffer-help-buffer-modes to make
82;; that variable customizable even though this code is obsolete. See
83;; also Bug#30990.
84(add-to-list 'ibuffer-help-buffer-modes 'Info-edit-mode)
85
81(provide 'info-edit) 86(provide 'info-edit)
82 87
83;;; info-edit.el ends here 88;;; info-edit.el ends here