aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-09-18 09:15:45 +0000
committerAndreas Schwab1998-09-18 09:15:45 +0000
commit78dc50d36467b2062f51f4ede8bf308d784c41f6 (patch)
tree7750816ccc6efb82ca2b6246c50f22c04880a6ce
parent58ed689c210cf8849dc237871f9aa7d25442171a (diff)
downloademacs-78dc50d36467b2062f51f4ede8bf308d784c41f6.tar.gz
emacs-78dc50d36467b2062f51f4ede8bf308d784c41f6.zip
(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.
-rw-r--r--lisp/net-utils.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/net-utils.el b/lisp/net-utils.el
index 38775a0cc80..db1645cfc53 100644
--- a/lisp/net-utils.el
+++ b/lisp/net-utils.el
@@ -77,7 +77,7 @@
77(defcustom traceroute-program-options nil 77(defcustom traceroute-program-options nil
78 "Options for the traceroute program." 78 "Options for the traceroute program."
79 :group 'net-utils 79 :group 'net-utils
80 :type '(repeat 'string) 80 :type '(repeat string)
81 ) 81 )
82 82
83(defcustom ping-program "ping" 83(defcustom ping-program "ping"
@@ -94,7 +94,7 @@
94 "Options for the ping program. 94 "Options for the ping program.
95These options can be used to limit how many ICMP packets are emitted." 95These options can be used to limit how many ICMP packets are emitted."
96 :group 'net-utils 96 :group 'net-utils
97 :type '(repeat 'string) 97 :type '(repeat string)
98 ) 98 )
99 99
100(defcustom ipconfig-program 100(defcustom ipconfig-program
@@ -112,7 +112,7 @@ These options can be used to limit how many ICMP packets are emitted."
112 "/all" "-a")) 112 "/all" "-a"))
113 "Options for ipconfig-program." 113 "Options for ipconfig-program."
114 :group 'net-utils 114 :group 'net-utils
115 :type '(repeat 'string) 115 :type '(repeat string)
116 ) 116 )
117 117
118(defcustom netstat-program "netstat" 118(defcustom netstat-program "netstat"
@@ -125,7 +125,7 @@ These options can be used to limit how many ICMP packets are emitted."
125 (list "-a") 125 (list "-a")
126 "Options for netstat-program." 126 "Options for netstat-program."
127 :group 'net-utils 127 :group 'net-utils
128 :type '(repeat 'string) 128 :type '(repeat string)
129 ) 129 )
130 130
131(defcustom arp-program "arp" 131(defcustom arp-program "arp"
@@ -138,7 +138,7 @@ These options can be used to limit how many ICMP packets are emitted."
138 (list "-a") 138 (list "-a")
139 "Options for arp-program." 139 "Options for arp-program."
140 :group 'net-utils 140 :group 'net-utils
141 :type '(repeat 'string) 141 :type '(repeat string)
142 ) 142 )
143 143
144(defcustom route-program 144(defcustom route-program
@@ -156,7 +156,7 @@ These options can be used to limit how many ICMP packets are emitted."
156 (list "-r")) 156 (list "-r"))
157 "Options for route-program." 157 "Options for route-program."
158 :group 'net-utils 158 :group 'net-utils
159 :type '(repeat 'string) 159 :type '(repeat string)
160 ) 160 )
161 161
162(defcustom nslookup-program "nslookup" 162(defcustom nslookup-program "nslookup"
@@ -168,7 +168,7 @@ These options can be used to limit how many ICMP packets are emitted."
168(defcustom nslookup-program-options nil 168(defcustom nslookup-program-options nil
169 "List of options to pass to the nslookup program." 169 "List of options to pass to the nslookup program."
170 :group 'net-utils 170 :group 'net-utils
171 :type '(repeat 'string) 171 :type '(repeat string)
172 ) 172 )
173 173
174(defcustom nslookup-prompt-regexp "^> " 174(defcustom nslookup-prompt-regexp "^> "
@@ -186,7 +186,7 @@ These options can be used to limit how many ICMP packets are emitted."
186(defcustom ftp-program-options nil 186(defcustom ftp-program-options nil
187 "List of options to pass to the FTP program." 187 "List of options to pass to the FTP program."
188 :group 'net-utils 188 :group 'net-utils
189 :type '(repeat 'string) 189 :type '(repeat string)
190 ) 190 )
191 191
192(defcustom ftp-prompt-regexp "^ftp>" 192(defcustom ftp-prompt-regexp "^ftp>"