diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:17:19 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:17:19 +0000 |
commit | cd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca (patch) | |
tree | d7cef036c6b82dcaed2f123dbf0e6c64daa7d1bf /lisp/net/net-utils.el | |
parent | f8754ca2dea51bbcddb30dedc4c4d1e6383fa0c1 (diff) | |
download | emacs-cd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca.tar.gz |
Move non-autoloaded define-obsolete-variable-alias calls for
defcustoms not in dumped files before the associated defcustom.
Diffstat (limited to 'lisp/net/net-utils.el')
-rw-r--r-- | lisp/net/net-utils.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index f64d79cfd12..3c882a5f518 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el @@ -91,6 +91,8 @@ These options can be used to limit how many ICMP packets are emitted." :group 'net-utils :type '(repeat string)) +(define-obsolete-variable-alias 'ipconfig-program 'ifconfig-program "22.2") + (defcustom ifconfig-program (if (eq system-type 'windows-nt) "ipconfig" @@ -99,8 +101,6 @@ These options can be used to limit how many ICMP packets are emitted." :group 'net-utils :type 'string) -(define-obsolete-variable-alias 'ipconfig-program 'ifconfig-program "22.2") - (defcustom ifconfig-program-options (list (if (eq system-type 'windows-nt) @@ -115,15 +115,15 @@ These options can be used to limit how many ICMP packets are emitted." :type 'string :version "23.1") +(define-obsolete-variable-alias 'ipconfig-program-options + 'ifconfig-program-options "22.2") + (defcustom iwconfig-program-options nil "Options for the iwconfig program." :group 'net-utils :type '(repeat string) :version "23.1") -(define-obsolete-variable-alias 'ipconfig-program-options - 'ifconfig-program-options "22.2") - (defcustom netstat-program "netstat" "Program to print network statistics." :group 'net-utils |