diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-03-12 14:13:38 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-03-12 14:13:38 -0500 |
commit | 26f4b8abb8c80011cf80dad9f6906e954727cd80 (patch) | |
tree | 3a755abc725b2b5ce82bb2f238e9cbeb8e126bee /lisp/net | |
parent | eba5b4dd1669cb0b0ba0e6cabe2f73d42c0894f4 (diff) | |
download | emacs-26f4b8abb8c80011cf80dad9f6906e954727cd80.tar.gz emacs-26f4b8abb8c80011cf80dad9f6906e954727cd80.tar.bz2 emacs-26f4b8abb8c80011cf80dad9f6906e954727cd80.zip |
Fix last change to use existing comm Custom group instead of `net'.
* cus-edit.el (net): Remove group.
(comm): Promote to top-level group.
* url/url-vars.el (url):
* net/browse-url.el (browse-url):
* net/xesam.el (xesam):
* net/tramp.el (tramp):
* net/goto-addr.el (goto-address):
* net/ange-ftp.el (ange-ftp): Put in comm group.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/ange-ftp.el | 2 | ||||
-rw-r--r-- | lisp/net/browse-url.el | 2 | ||||
-rw-r--r-- | lisp/net/goto-addr.el | 2 | ||||
-rw-r--r-- | lisp/net/tramp.el | 2 | ||||
-rw-r--r-- | lisp/net/xesam.el | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index ced5f21688f..336ffdadd09 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -676,7 +676,7 @@ "Accessing remote files and directories using FTP made as simple and transparent as possible." :group 'files - :group 'net + :group 'comm :prefix "ange-ftp-") (defcustom ange-ftp-name-format diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index 77392ded478..261b765eaeb 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el @@ -216,7 +216,7 @@ :prefix "browse-url-" :link '(emacs-commentary-link "browse-url") :group 'external - :group 'net) + :group 'comm) ;;;###autoload (defcustom browse-url-browser-function diff --git a/lisp/net/goto-addr.el b/lisp/net/goto-addr.el index 1eb322eb0d0..182758aaffb 100644 --- a/lisp/net/goto-addr.el +++ b/lisp/net/goto-addr.el @@ -76,7 +76,7 @@ (defgroup goto-address nil "Click to browse URL or to send to e-mail address." :group 'mouse - :group 'net) + :group 'comm) ;; I don't expect users to want fontify'ing without highlighting. diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 09a3392856f..8a3ec552d4d 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -176,7 +176,7 @@ (defgroup tramp nil "Edit remote files with a combination of rsh and rcp or similar programs." :group 'files - :group 'net + :group 'comm :version "22.1") ;; Maybe we need once a real Tramp mode, with key bindings etc. diff --git a/lisp/net/xesam.el b/lisp/net/xesam.el index fb68ded6d70..03c188006d0 100644 --- a/lisp/net/xesam.el +++ b/lisp/net/xesam.el @@ -151,7 +151,7 @@ (defgroup xesam nil "Xesam compatible interface to search engines." :group 'extensions - :group 'net + :group 'comm :version "23.1") (defcustom xesam-query-type 'user-query |