diff options
| author | Glenn Morris | 2008-02-09 01:32:38 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-09 01:32:38 +0000 |
| commit | d884d6adc76215fc61b3609b6bf2e7c0546ee430 (patch) | |
| tree | b3c16c692c935bce081e142591b6c7e8dbfaa8ad | |
| parent | b55a97a5a3e70be9296bcc7c0e7e6b6100989ebb (diff) | |
| download | emacs-d884d6adc76215fc61b3609b6bf2e7c0546ee430.tar.gz emacs-d884d6adc76215fc61b3609b6bf2e7c0546ee430.zip | |
(ipconfig-program, ipconfig-program-options): Add obsolete aliases to
the old names.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/net/net-utils.el | 5 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2732fb56bb5..08d7ad44e08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,14 @@ | |||
| 1 | 2008-02-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * net/net-utils.el (ipconfig-program, ipconfig-program-options): | ||
| 4 | Add obsolete aliases to the old names. | ||
| 5 | |||
| 1 | 2008-02-08 Richard Stallman <rms@gnu.org> | 6 | 2008-02-08 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * net/net-utils.el (ifconfig): Renamed from ipconfig. | 8 | * net/net-utils.el (ifconfig): Rename from ipconfig. |
| 4 | (ipconfig): Alas to ifconfig. | 9 | (ipconfig): Alas to ifconfig. |
| 5 | (ifconfig-program): Renamed from ipconfig-program. | 10 | (ifconfig-program): Renamed from ipconfig-program. |
| 6 | (ifconfig-program-options): Renamed from ipconfig-program-options. | 11 | (ifconfig-program-options): Rename from ipconfig-program-options. |
| 7 | 12 | ||
| 8 | 2008-02-08 Glenn Morris <rgm@gnu.org> | 13 | 2008-02-08 Glenn Morris <rgm@gnu.org> |
| 9 | 14 | ||
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el index bc235b71f94..0bed6cc9bcd 100644 --- a/lisp/net/net-utils.el +++ b/lisp/net/net-utils.el | |||
| @@ -101,6 +101,8 @@ These options can be used to limit how many ICMP packets are emitted." | |||
| 101 | :group 'net-utils | 101 | :group 'net-utils |
| 102 | :type 'string) | 102 | :type 'string) |
| 103 | 103 | ||
| 104 | (define-obsolete-variable-alias 'ipconfig-program 'ifconfig-program "22.2") | ||
| 105 | |||
| 104 | (defcustom ifconfig-program-options | 106 | (defcustom ifconfig-program-options |
| 105 | (list | 107 | (list |
| 106 | (if (eq system-type 'windows-nt) | 108 | (if (eq system-type 'windows-nt) |
| @@ -109,6 +111,9 @@ These options can be used to limit how many ICMP packets are emitted." | |||
| 109 | :group 'net-utils | 111 | :group 'net-utils |
| 110 | :type '(repeat string)) | 112 | :type '(repeat string)) |
| 111 | 113 | ||
| 114 | (define-obsolete-variable-alias 'ipconfig-program-options | ||
| 115 | 'ifconfig-program-options "22.2") | ||
| 116 | |||
| 112 | (defcustom netstat-program "netstat" | 117 | (defcustom netstat-program "netstat" |
| 113 | "Program to print network statistics." | 118 | "Program to print network statistics." |
| 114 | :group 'net-utils | 119 | :group 'net-utils |