aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorRomain Francoise <[email protected]>2005-08-27 14:38:22 +0000
committerRomain Francoise <[email protected]>2005-08-27 14:38:22 +0000
commita24c45d2bd2ef0e298e5ec52469a0e1eea8d1e70 (patch)
tree7cbe39de984b5a3399cc5ed987d37640189c502d /lisp/progmodes
parent0fb57cc0b4397b741cd921beb0871cdf7f80f667 (diff)
* progmodes/compile.el (compilation-start): Add autoload cookie.
* progmodes/antlr-mode.el: Don't autoload `compilation-start'. * textmodes/sgml-mode.el: Likewise. * progmodes/python.el: Likewise.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/antlr-mode.el2
-rw-r--r--lisp/progmodes/compile.el1
-rw-r--r--lisp/progmodes/python.el1
3 files changed, 1 insertions, 3 deletions
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el
index 88ad7098c8..229bec56dd 100644
--- a/lisp/progmodes/antlr-mode.el
+++ b/lisp/progmodes/antlr-mode.el
@@ -2229,8 +2229,6 @@ vocabulary of the super-grammar or nil if it is not needed."
(cons (if glibs (concat " -glib " (mapconcat 'car glibs ";")) "")
(cons unknown glibs))))
-(autoload 'compilation-start "compile")
-
(defun antlr-run-tool (command file &optional saved)
"Run Antlr took COMMAND on grammar FILE.
When called interactively, COMMAND is read from the minibuffer and
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 878159fb1b..b41cc601fe 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -911,6 +911,7 @@ Otherwise, construct a buffer name from MODE-NAME."
(compilation-start command nil name-function highlight-regexp)))
(make-obsolete 'compile-internal 'compilation-start)
+;;;###autoload
(defun compilation-start (command &optional mode name-function highlight-regexp)
"Run compilation command COMMAND (low level interface).
If COMMAND starts with a cd command, that becomes the `default-directory'.
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index f543143190..433476f795 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -67,7 +67,6 @@
(eval-when-compile
(require 'compile)
(autoload 'info-lookup-maybe-add-help "info-look"))
-(autoload 'compilation-start "compile")
(defgroup python nil
"Silly walks in the Python language."