diff options
| author | Eli Zaretskii | 2019-09-28 22:11:38 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-09-28 22:11:38 +0300 |
| commit | c49e36e67e127417782770d63afc378cd232344e (patch) | |
| tree | 8ea8e8a84f1da980b9e31c309aa4bb78194f1322 | |
| parent | fc3ba91a57bbaf5344e8de3fdbe3a0371f126fcb (diff) | |
| parent | 8cd2eee70a6af700c0379e3e7126ef023293ee67 (diff) | |
| download | emacs-c49e36e67e127417782770d63afc378cd232344e.tar.gz emacs-c49e36e67e127417782770d63afc378cd232344e.zip | |
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
| -rw-r--r-- | lisp/gnus/nnimap.el | 14 | ||||
| -rw-r--r-- | lisp/ibuffer.el | 2 | ||||
| -rw-r--r-- | lisp/obsolete/info-edit.el | 5 |
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. |
| 107 | If 'never, deleted articles are marked with the IMAP \\Delete | 107 | If `never', deleted articles are marked with the IMAP \\Delete |
| 108 | flag but not automatically expunged. If 'immediately, deleted | 108 | flag but not automatically expunged. If `immediately', deleted |
| 109 | articles are immediately expunged (this requires the server to | 109 | articles are immediately expunged (this requires the server to |
| 110 | support the UID EXPUNGE command). If 'on-exit, deleted articles | 110 | support the UID EXPUNGE command). If `on-exit', deleted articles |
| 111 | are flagged, and all flagged articles are expunged when the | 111 | are flagged, and all flagged articles are expunged when the group |
| 112 | group is closed. | 112 | is closed. |
| 113 | 113 | ||
| 114 | For backwards compatibility, this variable may also be set to t | 114 | For backwards compatibility, this variable may also be set to t |
| 115 | or nil. If the server supports UID EXPUNGE, both t and nil are | 115 | or nil. If the server supports UID EXPUNGE, both t and nil are |
| 116 | equivalent to 'immediately. If the server does not support UID | 116 | equivalent to `immediately'. If the server does not support UID |
| 117 | EXPUNGE nil is equivalent to 'never, while t will immediately | 117 | EXPUNGE nil is equivalent to `never', while t will immediately |
| 118 | expunge ALL articles that are currently flagged as deleted | 118 | expunge 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 |