diff options
| author | Glenn Morris | 2014-01-30 22:39:51 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-01-30 22:39:51 -0800 |
| commit | 23dc6d0ccdbe5d0638f9c3498bd64ffbf0606107 (patch) | |
| tree | f20e32155869be79e924b28663db233836d30f61 | |
| parent | fbb764b8bc037b7d91b9e84d70f245d5e6daed89 (diff) | |
| download | emacs-23dc6d0ccdbe5d0638f9c3498bd64ffbf0606107.tar.gz emacs-23dc6d0ccdbe5d0638f9c3498bd64ffbf0606107.zip | |
* lisp/erc/erc.el (erc-accidental-paste-threshold-seconds): Doc tweak.
* etc/NEWS: Related markup.
| -rw-r--r-- | etc/NEWS | 1 | ||||
| -rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 9 |
3 files changed, 9 insertions, 5 deletions
| @@ -512,6 +512,7 @@ that means: when one of the recipients of the message being encrypted | |||
| 512 | is `foo@bar.com', ignore that name as regards encryption. | 512 | is `foo@bar.com', ignore that name as regards encryption. |
| 513 | This is useful to avoid a query when you have no key for that name. | 513 | This is useful to avoid a query when you have no key for that name. |
| 514 | 514 | ||
| 515 | --- | ||
| 515 | ** New ERC option `erc-accidental-paste-threshold-seconds'. | 516 | ** New ERC option `erc-accidental-paste-threshold-seconds'. |
| 516 | If set to a number, this can be used to avoid accidentally pasting large | 517 | If set to a number, this can be used to avoid accidentally pasting large |
| 517 | amounts of data into the ERC input. | 518 | amounts of data into the ERC input. |
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 39c749838e5..8d0fc723f14 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-01-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * erc.el (erc-accidental-paste-threshold-seconds): Doc tweak. | ||
| 4 | |||
| 1 | 2014-01-25 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> | 5 | 2014-01-25 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> |
| 2 | 6 | ||
| 3 | * erc.el (erc): Link to info manual. | 7 | * erc.el (erc): Link to info manual. |
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index c19b8c9a48e..102818c18b5 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -5190,11 +5190,10 @@ If that function has never been called, the value is 0.") | |||
| 5190 | 5190 | ||
| 5191 | (defcustom erc-accidental-paste-threshold-seconds nil | 5191 | (defcustom erc-accidental-paste-threshold-seconds nil |
| 5192 | "Minimum time, in seconds, before sending new lines via IRC. | 5192 | "Minimum time, in seconds, before sending new lines via IRC. |
| 5193 | If the value is a number, `erc-send-current-line' signals an | 5193 | If the value is a number, `erc-send-current-line' signals an error |
| 5194 | error if its previous invocation was less than this much time | 5194 | if its previous invocation was fewer than this many seconds ago. |
| 5195 | ago. This is useful so that if you accidentally enter large | 5195 | This is useful so that if you accidentally enter large amounts of text |
| 5196 | amounts of text into the ERC buffer, that text is not sent to the | 5196 | into the ERC buffer, that text is not sent to the IRC server. |
| 5197 | IRC server. | ||
| 5198 | 5197 | ||
| 5199 | If the value is nil, `erc-send-current-line' always considers any | 5198 | If the value is nil, `erc-send-current-line' always considers any |
| 5200 | submitted line to be intentional." | 5199 | submitted line to be intentional." |