comparison lisp/progmodes/executable.el @ 14024:8a10a3485eef

(interpreter-mode-alist): Modification deleted.
author Richard M. Stallman <rms@gnu.org>
date Fri, 05 Jan 1996 02:25:26 +0000
parents bc084caba958
children 787061ad42ba
comparison
equal deleted inserted replaced
14023:1c9beae43583 14024:8a10a3485eef
67 relative to the files existing modes. Do nothing if this is nil. 67 relative to the files existing modes. Do nothing if this is nil.
68 Typical values are 73 (+x) or -493 (rwxr-xr-x).") 68 Typical values are 73 (+x) or -493 (rwxr-xr-x).")
69 69
70 70
71 (defvar executable-command nil) 71 (defvar executable-command nil)
72
73
74 ;; Autoload cookie deleted here because it made loaddefs.el fail to load.
75 ;; -rms
76 (or (assoc "tail" interpreter-mode-alist)
77 (nconc interpreter-mode-alist
78 '(("tail" . text-mode)
79 ("more" . text-mode)
80 ("less" . text-mode)
81 ("pg" . text-mode))))
82 72
83 (defvar executable-self-display "tail" 73 (defvar executable-self-display "tail"
84 "*Command you use with argument `+2' to make text files self-display. 74 "*Command you use with argument `+2' to make text files self-display.
85 Note that the like of `more' doesn't work too well under Emacs \\[shell].") 75 Note that the like of `more' doesn't work too well under Emacs \\[shell].")
86 76