diff options
| author | Glenn Morris | 2011-06-01 10:34:24 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-06-01 10:34:24 -0700 |
| commit | 3b7d5980c94cdf3188b2a5bb002e00d887312957 (patch) | |
| tree | 416f353d938feed7e2f8f63113a6077b37ac0c31 | |
| parent | fe91f5a0910e3d5c4f99d98733ffe4d1b87ba7da (diff) | |
| download | emacs-3b7d5980c94cdf3188b2a5bb002e00d887312957.tar.gz emacs-3b7d5980c94cdf3188b2a5bb002e00d887312957.zip | |
Add :version tags for url-queue.el.
* lisp/url/url-queue.el (url-queue-parallel-processes, url-queue-timeout):
Add :version tag for options that will be new in 24.1.
| -rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/url/url-queue.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 1f2784fe656..e5ab59e828f 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-06-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * url-queue.el (url-queue-parallel-processes, url-queue-timeout): | ||
| 4 | Add :version tag for options that will be new in 24.1. | ||
| 5 | |||
| 1 | 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * url-queue.el (url-queue-parallel-processes): Increase the | 8 | * url-queue.el (url-queue-parallel-processes): Increase the |
diff --git a/lisp/url/url-queue.el b/lisp/url/url-queue.el index e6c8537c469..c5150a93561 100644 --- a/lisp/url/url-queue.el +++ b/lisp/url/url-queue.el | |||
| @@ -33,11 +33,13 @@ | |||
| 33 | 33 | ||
| 34 | (defcustom url-queue-parallel-processes 6 | 34 | (defcustom url-queue-parallel-processes 6 |
| 35 | "The number of concurrent processes." | 35 | "The number of concurrent processes." |
| 36 | :version "24.1" | ||
| 36 | :type 'integer | 37 | :type 'integer |
| 37 | :group 'url) | 38 | :group 'url) |
| 38 | 39 | ||
| 39 | (defcustom url-queue-timeout 5 | 40 | (defcustom url-queue-timeout 5 |
| 40 | "How long to let a job live once it's started (in seconds)." | 41 | "How long to let a job live once it's started (in seconds)." |
| 42 | :version "24.1" | ||
| 41 | :type 'integer | 43 | :type 'integer |
| 42 | :group 'url) | 44 | :group 'url) |
| 43 | 45 | ||