]> git.eshelyaron.com Git - emacs.git/commitdiff
(traceroute-program-options, ping-program-options,
authorAndreas Schwab <schwab@suse.de>
Fri, 18 Sep 1998 09:15:45 +0000 (09:15 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 18 Sep 1998 09:15:45 +0000 (09:15 +0000)
ipconfig-program-options, netstat-program-options,
arp-program-options, route-program-options,
nslookup-program-options, ftp-program-options): Fix customize
type.

lisp/net-utils.el

index 38775a0cc80403603f7c0d25234971fe1befd03b..db1645cfc53f8e021cd1e3a38eb9961cec90346a 100644 (file)
@@ -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 @@ These options can be used to limit how many ICMP packets are emitted."
        "/all" "-a"))
   "Options for ipconfig-program."
   :group 'net-utils
-  :type  '(repeat 'string)
+  :type  '(repeat string)
   )
 
 (defcustom netstat-program  "netstat"
@@ -125,7 +125,7 @@ These options can be used to limit how many ICMP packets are emitted."
   (list "-a")
   "Options for netstat-program."
   :group 'net-utils
-  :type  '(repeat 'string)
+  :type  '(repeat string)
   )
 
 (defcustom arp-program  "arp"
@@ -138,7 +138,7 @@ These options can be used to limit how many ICMP packets are emitted."
   (list "-a")
   "Options for arp-program."
   :group 'net-utils
-  :type  '(repeat 'string)
+  :type  '(repeat string)
   )
 
 (defcustom route-program  
@@ -156,7 +156,7 @@ These options can be used to limit how many ICMP packets are emitted."
     (list "-r"))
   "Options for route-program."
   :group 'net-utils
-  :type  '(repeat 'string)
+  :type  '(repeat string)
   )
 
 (defcustom nslookup-program  "nslookup"
@@ -168,7 +168,7 @@ These options can be used to limit how many ICMP packets are emitted."
 (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 @@ These options can be used to limit how many ICMP packets are emitted."
 (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>"