diff options
| author | Glenn Morris | 2013-12-28 00:27:34 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-12-28 00:27:34 -0800 |
| commit | 946618bae3f84472c45d893e20e19b7422346370 (patch) | |
| tree | 74abb6ecae9534beaf3d847f3d401fdb392c3d2f /lisp/erc | |
| parent | 9c5a5c77000b452bdf3ee98e366d5ee6df54b5a4 (diff) | |
| download | emacs-946618bae3f84472c45d893e20e19b7422346370.tar.gz emacs-946618bae3f84472c45d893e20e19b7422346370.zip | |
Revert earlier erc-button change
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/erc/erc-button.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 46c93ccebd6..4d78421a7ab 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -2,8 +2,6 @@ | |||
| 2 | 2 | ||
| 3 | * erc-log.el (erc-log-file-coding-system): Specify custom type. | 3 | * erc-log.el (erc-log-file-coding-system): Specify custom type. |
| 4 | 4 | ||
| 5 | * erc-button.el (erc-button-alist): Fix custom type. | ||
| 6 | |||
| 7 | 2013-11-25 Glenn Morris <rgm@gnu.org> | 5 | 2013-11-25 Glenn Morris <rgm@gnu.org> |
| 8 | 6 | ||
| 9 | * erc-button.el (erc-nick-popup): Make `nick' available in the | 7 | * erc-button.el (erc-nick-popup): Make `nick' available in the |
diff --git a/lisp/erc/erc-button.el b/lisp/erc/erc-button.el index 9b5bd50400a..69642889527 100644 --- a/lisp/erc/erc-button.el +++ b/lisp/erc/erc-button.el | |||
| @@ -189,7 +189,9 @@ PAR is a number of a regexp grouping whose text will be passed to | |||
| 189 | (choice :tag "Matches" | 189 | (choice :tag "Matches" |
| 190 | regexp | 190 | regexp |
| 191 | (variable :tag "Variable containing regexp") | 191 | (variable :tag "Variable containing regexp") |
| 192 | (const :tag "Nicknames" nicknames)) | 192 | ;; FIXME It really does mean 'nicknames |
| 193 | ;; rather than just nicknames. | ||
| 194 | (const :tag "Nicknames" 'nicknames)) | ||
| 193 | (integer :tag "Number of the regexp section that matches") | 195 | (integer :tag "Number of the regexp section that matches") |
| 194 | (choice :tag "When to buttonize" | 196 | (choice :tag "When to buttonize" |
| 195 | (const :tag "Always" t) | 197 | (const :tag "Always" t) |