aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2005-08-27 14:38:22 +0000
committerRomain Francoise2005-08-27 14:38:22 +0000
commita24c45d2bd2ef0e298e5ec52469a0e1eea8d1e70 (patch)
tree7cbe39de984b5a3399cc5ed987d37640189c502d
parent0fb57cc0b4397b741cd921beb0871cdf7f80f667 (diff)
downloademacs-a24c45d2bd2ef0e298e5ec52469a0e1eea8d1e70.tar.gz
emacs-a24c45d2bd2ef0e298e5ec52469a0e1eea8d1e70.zip
* 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.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/progmodes/antlr-mode.el2
-rw-r--r--lisp/progmodes/compile.el1
-rw-r--r--lisp/progmodes/python.el1
-rw-r--r--lisp/textmodes/sgml-mode.el2
5 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e8ef15dea3d..1b7eb7d9317 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12005-08-27 Romain Francoise <romain@orebokech.com>
2
3 * progmodes/compile.el (compilation-start): Add autoload cookie.
4
5 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
6 * textmodes/sgml-mode.el: Likewise.
7 * progmodes/python.el: Likewise.
8
12005-08-27 Eli Zaretskii <eliz@gnu.org> 92005-08-27 Eli Zaretskii <eliz@gnu.org>
2 10
3 * simple.el (blink-matching-paren-distance): Document the meaning 11 * simple.el (blink-matching-paren-distance): Document the meaning
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el
index 88ad7098c89..229bec56dd5 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."
2229 (cons (if glibs (concat " -glib " (mapconcat 'car glibs ";")) "") 2229 (cons (if glibs (concat " -glib " (mapconcat 'car glibs ";")) "")
2230 (cons unknown glibs)))) 2230 (cons unknown glibs))))
2231 2231
2232(autoload 'compilation-start "compile")
2233
2234(defun antlr-run-tool (command file &optional saved) 2232(defun antlr-run-tool (command file &optional saved)
2235 "Run Antlr took COMMAND on grammar FILE. 2233 "Run Antlr took COMMAND on grammar FILE.
2236When called interactively, COMMAND is read from the minibuffer and 2234When called interactively, COMMAND is read from the minibuffer and
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 878159fb1bc..b41cc601fe7 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -911,6 +911,7 @@ Otherwise, construct a buffer name from MODE-NAME."
911 (compilation-start command nil name-function highlight-regexp))) 911 (compilation-start command nil name-function highlight-regexp)))
912(make-obsolete 'compile-internal 'compilation-start) 912(make-obsolete 'compile-internal 'compilation-start)
913 913
914;;;###autoload
914(defun compilation-start (command &optional mode name-function highlight-regexp) 915(defun compilation-start (command &optional mode name-function highlight-regexp)
915 "Run compilation command COMMAND (low level interface). 916 "Run compilation command COMMAND (low level interface).
916If COMMAND starts with a cd command, that becomes the `default-directory'. 917If COMMAND starts with a cd command, that becomes the `default-directory'.
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index f5431431902..433476f7957 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -67,7 +67,6 @@
67(eval-when-compile 67(eval-when-compile
68 (require 'compile) 68 (require 'compile)
69 (autoload 'info-lookup-maybe-add-help "info-look")) 69 (autoload 'info-lookup-maybe-add-help "info-look"))
70(autoload 'compilation-start "compile")
71 70
72(defgroup python nil 71(defgroup python nil
73 "Silly walks in the Python language." 72 "Silly walks in the Python language."
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index 0d4281c1720..d331ce05ff7 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -901,8 +901,6 @@ With prefix argument ARG, repeat this ARG times."
901 (forward-list))))))) 901 (forward-list)))))))
902 902
903 903
904(autoload 'compilation-start "compile")
905
906(defun sgml-validate (command) 904(defun sgml-validate (command)
907 "Validate an SGML document. 905 "Validate an SGML document.
908Runs COMMAND, a shell command, in a separate process asynchronously 906Runs COMMAND, a shell command, in a separate process asynchronously