aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-22 15:21:41 +0000
committerRichard M. Stallman2002-07-22 15:21:41 +0000
commit64f6f48618753d6147a711bf73252227bb19dd3a (patch)
tree8890206cafc5b2d113b921c9a37272a8a8074e99
parentd0b3b54afa61be2daf697bbc046997ab4ad0ee2d (diff)
downloademacs-64f6f48618753d6147a711bf73252227bb19dd3a.tar.gz
emacs-64f6f48618753d6147a711bf73252227bb19dd3a.zip
(browse-url-lynx-input-attempts): Use defcustom.
(browse-url-lynx-input-delay): Add custom type and group.
-rw-r--r--lisp/net/browse-url.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index fdd69deba8b..cdda3ef98d7 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -518,11 +518,15 @@ down (this *won't* always work)."
518 :version "20.3" 518 :version "20.3"
519 :group 'browse-url) 519 :group 'browse-url)
520 520
521(defvar browse-url-lynx-input-attempts 10 521(defcustom browse-url-lynx-input-attempts 10
522 "*How many times to try to move down from a series of lynx input fields.") 522 "*How many times to try to move down from a series of lynx input fields."
523 :type 'integer
524 :group 'browse-url)
523 525
524(defcustom browse-url-lynx-input-delay 0.2 526(defcustom browse-url-lynx-input-delay 0.2
525 "*How many seconds to wait for lynx between moves down from an input field.") 527 "*How many seconds to wait for lynx between moves down from an input field."
528 :type 'number
529 :group 'browse-url)
526 530
527(defcustom browse-url-kde-program "kfmclient" 531(defcustom browse-url-kde-program "kfmclient"
528 "*The name by which to invoke the KDE web browser." 532 "*The name by which to invoke the KDE web browser."