changeset 8257:bbf6304598d9

"Comment out" autoload cookies.
author Richard M. Stallman <rms@gnu.org>
date Fri, 15 Jul 1994 22:10:07 +0000
parents da75bd851e9f
children 44773d8bee3e
files lisp/progmodes/sh-script.el
diffstat 1 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/sh-script.el	Fri Jul 15 22:07:41 1994 +0000
+++ b/lisp/progmodes/sh-script.el	Fri Jul 15 22:10:07 1994 +0000
@@ -27,6 +27,10 @@
 ;; tcsh are supported.  Structured statements can be inserted with one
 ;; command.
 
+;; Autoloading of these functions is currently turned off
+;; because it's not clear whether this mode is really desirable to use.
+;; -- rms
+
 ;;; Code:
 
 ;; page 1:	variables and settings
@@ -35,7 +39,7 @@
 ;; page 4:	various other commands
 
 
-;;;###autoload
+;;;###dont-autoload
 (setq auto-mode-alist
       ;; matches files
       ;;	- who's path contains /bin/, but not directories
@@ -320,7 +324,7 @@
 
 ;; mode-command and utility functions
 
-;;;###autoload
+;;;###dont-autoload
 (defun sh-or-other-mode ()
   "Decide whether this is a compiled executable or a script.
 Usually the file-names of scripts and binaries cannot be automatically
@@ -333,7 +337,7 @@
 	       'sh-mode)))
 
 
-;;;###autoload
+;;;###dont-autoload
 (defun sh-mode ()
   "Major mode for editing shell scripts.
 This mode works for many shells, since they all have roughly the same syntax,
@@ -415,7 +419,7 @@
        (or (eq sh-find-file-modifies t)
 	   (set-buffer-modified-p nil)))
   (run-hooks 'sh-mode-hook))
-;;;###autoload
+;;;###dont-autoload
 (defalias 'shell-script-mode 'sh-mode)