diff options
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/gnutls.el | 1 | ||||
-rw-r--r-- | lisp/net/netrc.el | 1 | ||||
-rw-r--r-- | lisp/net/soap-client.el | 1 | ||||
-rw-r--r-- | lisp/net/tramp.el | 2 |
4 files changed, 5 insertions, 0 deletions
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index 17fef277736..f53afa90993 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -39,6 +39,7 @@ (defgroup gnutls nil "Emacs interface to the GnuTLS library." + :version "24.1" :prefix "gnutls-" :group 'net-utils) diff --git a/lisp/net/netrc.el b/lisp/net/netrc.el index 070b32a63d0..16d9203ba04 100644 --- a/lisp/net/netrc.el +++ b/lisp/net/netrc.el @@ -39,6 +39,7 @@ (defcustom netrc-file "~/.authinfo" "File where user credentials are stored." + :version "24.1" :type 'file :group 'netrc) diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el index dfa2b76899a..e17b283c55f 100644 --- a/lisp/net/soap-client.el +++ b/lisp/net/soap-client.el @@ -55,6 +55,7 @@ (defgroup soap-client nil "Access SOAP web services from Emacs." + :version "24.1" :group 'tools) ;;;; Support for parsing XML documents with namespaces diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index f13315bc662..851b11629f4 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -181,6 +181,7 @@ See the variable `tramp-encoding-shell' for more information." (unless (string-match "cmd\\.exe" tramp-encoding-shell) "-i") "*Use this switch together with `tramp-encoding-shell' for interactive shells. See the variable `tramp-encoding-shell' for more information." + :version "24.1" :group 'tramp :type '(choice (const nil) string)) @@ -463,6 +464,7 @@ the remote shell.") (defcustom tramp-local-end-of-line (if (memq system-type '(windows-nt)) "\r\n" "\n") "*String used for end of line in local processes." + :version "24.1" :group 'tramp :type 'string) |