summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/autoload.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index ad5b714b948..3485248c3cf 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -42,12 +42,6 @@ trailer starting with a FormFeed character.")
;;;###autoload
(put 'generated-autoload-file 'safe-local-variable 'stringp)
-(defvar generated-autoload-feature nil
- "Feature for `generated-autoload-file' to provide.
-If nil, this defaults to `generated-autoload-file', sans extension.")
-;;;###autoload
-(put 'generated-autoload-feature 'safe-local-variable 'symbolp)
-
(defvar generated-autoload-load-name nil
"Load name for `autoload' statements generated from autoload cookies.
If nil, this defaults to the file name, sans extension.")
@@ -269,12 +263,6 @@ information contained in FILE."
";;\n"
";;; Code:\n\n"
" \n"
- "(provide '"
- (if (and generated-autoload-feature
- (symbolp generated-autoload-feature))
- (format "%s" generated-autoload-feature)
- (file-name-sans-extension basename))
- ")\n"
";; Local Variables:\n"
";; version-control: never\n"
";; no-byte-compile: t\n"