comparison lisp/net/browse-url.el @ 46615:eb33dc994d58

(browse-url-lynx-input-attempts): Use defcustom. (browse-url-lynx-input-delay): Add custom type and group.
author Richard M. Stallman <rms@gnu.org>
date Mon, 22 Jul 2002 15:21:41 +0000
parents b699a283b3fa
children d289d703471d
comparison
equal deleted inserted replaced
46614:ba53f9632b14 46615:eb33dc994d58
516 (const :tag "Disregard" :value nil) 516 (const :tag "Disregard" :value nil)
517 (const :tag "Warn, don't emit URL" :value warn)) 517 (const :tag "Warn, don't emit URL" :value warn))
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."
529 :type 'string 533 :type 'string
530 :version "21.1" 534 :version "21.1"