diff options
| author | Glenn Morris | 2015-02-13 13:19:20 -0500 |
|---|---|---|
| committer | Glenn Morris | 2015-02-13 13:19:20 -0500 |
| commit | 3ca2ff367aa09db7b122ee73d168f47fb8a8f819 (patch) | |
| tree | 8d2be7bfb1bd5f2c024433899060c0cd3f49f87f | |
| parent | b85523fea0b77a25b6afae8bdd6215acaf4455a1 (diff) | |
| download | emacs-3ca2ff367aa09db7b122ee73d168f47fb8a8f819.tar.gz emacs-3ca2ff367aa09db7b122ee73d168f47fb8a8f819.zip | |
* lisp/erc/erc.el (erc-rename-buffers): Doc fix. Add :version.
| -rw-r--r-- | lisp/erc/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 8e0c31a7dec..b8357d1de6b 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2015-02-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * erc.el (erc-rename-buffers): Doc fix. Add :version. | ||
| 4 | |||
| 1 | 2015-01-14 Dima Kogan <dima@secretsauce.net> | 5 | 2015-01-14 Dima Kogan <dima@secretsauce.net> |
| 2 | 6 | ||
| 3 | * erc-backend.el (define-erc-response-handler): Give hook-name | 7 | * erc-backend.el (define-erc-response-handler): Give hook-name |
| 4 | default value of nil and add-to-list (bug#19363) | 8 | default value of nil and add-to-list (bug#19363). |
| 5 | 9 | ||
| 6 | 2014-11-10 Kelvin White <kwhite@gnu.org> | 10 | 2014-11-10 Kelvin White <kwhite@gnu.org> |
| 7 | 11 | ||
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 7b9a3eb8620..e2366a1b58f 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -197,7 +197,8 @@ parameters and authentication." | |||
| 197 | (set sym (if (functionp val) (funcall val) val)))) | 197 | (set sym (if (functionp val) (funcall val) val)))) |
| 198 | 198 | ||
| 199 | (defcustom erc-rename-buffers nil | 199 | (defcustom erc-rename-buffers nil |
| 200 | "When this is set to t, buffers will be renamed to network name if available" | 200 | "Non-nil means rename buffers with network name, if available." |
| 201 | :version "24.5" | ||
| 201 | :group 'erc | 202 | :group 'erc |
| 202 | :type 'boolean) | 203 | :type 'boolean) |
| 203 | 204 | ||
| @@ -1148,6 +1149,7 @@ which the local user typed." | |||
| 1148 | "Faces for ERC." | 1149 | "Faces for ERC." |
| 1149 | :group 'erc) | 1150 | :group 'erc) |
| 1150 | 1151 | ||
| 1152 | ;; FIXME faces should not end in "-face". | ||
| 1151 | (defface erc-default-face '((t)) | 1153 | (defface erc-default-face '((t)) |
| 1152 | "ERC default face." | 1154 | "ERC default face." |
| 1153 | :group 'erc-faces) | 1155 | :group 'erc-faces) |