# HG changeset patch # User Andreas Schwab # Date 906110145 0 # Node ID 16780f249ecee30be2f081f2921095630cd6a6be # Parent 7f15741f18995f35bb045a72c2da12446b19b587 (traceroute-program-options, ping-program-options, ipconfig-program-options, netstat-program-options, arp-program-options, route-program-options, nslookup-program-options, ftp-program-options): Fix customize type. diff -r 7f15741f1899 -r 16780f249ece lisp/net-utils.el --- a/lisp/net-utils.el Fri Sep 18 09:14:52 1998 +0000 +++ b/lisp/net-utils.el Fri Sep 18 09:15:45 1998 +0000 @@ -77,7 +77,7 @@ (defcustom traceroute-program-options nil "Options for the traceroute program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom ping-program "ping" @@ -94,7 +94,7 @@ "Options for the ping program. These options can be used to limit how many ICMP packets are emitted." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom ipconfig-program @@ -112,7 +112,7 @@ "/all" "-a")) "Options for ipconfig-program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom netstat-program "netstat" @@ -125,7 +125,7 @@ (list "-a") "Options for netstat-program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom arp-program "arp" @@ -138,7 +138,7 @@ (list "-a") "Options for arp-program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom route-program @@ -156,7 +156,7 @@ (list "-r")) "Options for route-program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom nslookup-program "nslookup" @@ -168,7 +168,7 @@ (defcustom nslookup-program-options nil "List of options to pass to the nslookup program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom nslookup-prompt-regexp "^> " @@ -186,7 +186,7 @@ (defcustom ftp-program-options nil "List of options to pass to the FTP program." :group 'net-utils - :type '(repeat 'string) + :type '(repeat string) ) (defcustom ftp-prompt-regexp "^ftp>"