diff options
-rw-r--r-- | lisp/progmodes/executable.el | 5 | ||||
-rw-r--r-- | lisp/progmodes/sh-script.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index cc15ad964f1..3711ec4f67a 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el @@ -26,6 +26,8 @@ ;; executable if it isn't. Support code for the likes of sh-, awk-, perl-, ;; tcl- or makefile-mode. +;; Would someone please explain clearly what this is to be used for? -- rms. + ;;; Code: (defvar executable-insert 'not-modified @@ -63,7 +65,8 @@ Typical values are 73 (+x) or -493 (rwxr-xr-x).") (defvar executable-command nil) -;;;###autoload +;; Autoload cookie deleted here because it made loaddefs.el fail to load. +;; -rms (or (assoc "tail" interpreter-mode-alist) (nconc interpreter-mode-alist '(("tail" . text-mode) diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 3e5bc2165d7..1d6318e7cb7 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -51,7 +51,9 @@ (require 'executable) -;;;###autoload + +;; Autoload cookie deleted here because it made loaddefs.el fail to load. +;; -rms (or (assoc "sh" interpreter-mode-alist) (setq auto-mode-alist ;; matches files |