diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:38:59 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:38:59 +0000 |
commit | 3c5fa30ac92a7146ea31ce3c78ee8a03432a452f (patch) | |
tree | 158afe34e15fba72179c664b16e4a621ee83c11a /lisp/net/tls.el | |
parent | 26b3dce61c1247b5b142f51209a3609013591fcb (diff) | |
download | emacs-3c5fa30ac92a7146ea31ce3c78ee8a03432a452f.tar.gz |
Remove unnecessary eval-and-compile.
Diffstat (limited to 'lisp/net/tls.el')
-rw-r--r-- | lisp/net/tls.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/net/tls.el b/lisp/net/tls.el index e1e01b002d2..3044cb4ab71 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el @@ -1,7 +1,7 @@ ;;; tls.el --- TLS/SSL support via wrapper around GnuTLS -;; Copyright (C) 1996, 1997, 1998, 1999, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1996, 1997, 1998, 1999, 2002, 2003, 2004, 2005, 2006, +;; 2007, 2008 Free Software Foundation, Inc. ;; Author: Simon Josefsson <simon@josefsson.org> ;; Keywords: comm, tls, gnutls, ssl @@ -45,9 +45,8 @@ ;;; Code: -(eval-and-compile - (autoload 'format-spec "format-spec") - (autoload 'format-spec-make "format-spec")) +(autoload 'format-spec "format-spec") +(autoload 'format-spec-make "format-spec") (defgroup tls nil "Transport Layer Security (TLS) parameters." |