annotate lisp/progmodes/executable.el @ 19799:59b1106a46e5

(command-line-1): Update copyright year in string.
author Richard M. Stallman <rms@gnu.org>
date Sun, 07 Sep 1997 17:07:01 +0000
parents 727cf56647a4
children 521f5765e7ce
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
1 ;;; executable.el --- base functionality for executable interpreter scripts
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14111
diff changeset
2
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14111
diff changeset
3 ;; Copyright (C) 1994, 1995, 1996 by Free Software Foundation, Inc.
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
4
17977
727cf56647a4 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17411
diff changeset
5 ;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de
727cf56647a4 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17411
diff changeset
6 ;; fax (+49 69) 7588-2389
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
7 ;; Keywords: languages, unix
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
8
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
10
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
14 ;; any later version.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
15
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
20
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14111
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14111
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14111
diff changeset
24 ;; Boston, MA 02111-1307, USA.
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
25
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
12818
3ef9f196e634 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12817
diff changeset
27
3ef9f196e634 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12817
diff changeset
28 ;; executable.el is used by certain major modes to insert a suitable
3ef9f196e634 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12817
diff changeset
29 ;; #! line at the beginning of the file, if the file does not already
3ef9f196e634 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12817
diff changeset
30 ;; have one.
3ef9f196e634 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12817
diff changeset
31
14722
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
32 ;; Unless it has a magic number, a Unix file with executable mode is passed to
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
33 ;; a new instance of the running shell (or to a Bourne shell if a csh is
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
34 ;; running and the file starts with `:'). Only a shell can start such a file,
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
35 ;; exec() cannot, which is why it is important to have a magic number in every
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
36 ;; executable script. Such a magic number is made up by the characters `#!'
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
37 ;; the filename of an interpreter (in COFF, ELF or somesuch format) and one
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
38 ;; optional argument.
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
39
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
40 ;; This library is for certain major modes like sh-, awk-, perl-, tcl- or
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
41 ;; makefile-mode to insert or update a suitable #! line at the beginning of
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
42 ;; the file, if the file does not already have one and the file is not a
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
43 ;; default file of that interpreter (like .profile or makefile). It also
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
44 ;; makes the file executable if it wasn't, as soon as it's saved.
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
45
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
46 ;; It also allows debugging scripts, with an adaptation of compile, as far
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
47 ;; as interpreters give out meaningful error messages.
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
48
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
49 ;; Modes that use this should nconc `executable-map' to the end of their own
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
50 ;; keymap and `executable-font-lock-keywords' to the end of their own font
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
51 ;; lock keywords. Their mode-setting commands should call
4f6baee20482 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
52 ;; `executable-set-magic'.
12812
39e721f1681f (interpreter-mode-alist): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12504
diff changeset
53
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
54 ;;; Code:
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
55
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
56 (defgroup executable nil
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
57 "Base functionality for executable interpreter scripts"
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
58 :group 'processes)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
59
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
60 (defcustom executable-insert 'other
16128
7af77f490166 (executable-insert): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15750
diff changeset
61 "*Non-nil means offer to add a magic number to a file.
7af77f490166 (executable-insert): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15750
diff changeset
62 This takes effect when you switch to certain major modes,
7af77f490166 (executable-insert): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15750
diff changeset
63 including Shell-script mode (`sh-mode').
7af77f490166 (executable-insert): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15750
diff changeset
64 When you type \\[executable-set-magic], it always offers to add or
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
65 update the magic number."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
66 :type '(choice (const :tag "off" nil)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
67 (const :tag "on" t)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
68 symbol)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
69 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
70
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
71
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
72 (defcustom executable-query 'function
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
73 "*If non-nil, ask user before changing an existing magic number.
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
74 When this is `function', only ask when called non-interactively."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
75 :type '(choice (const :tag "Don't Ask" nil)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
76 (const :tag "Ask" t)
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
77 (const :tag "Ask when non-interactive" function))
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
78 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
79
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
80
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
81 (defcustom executable-magicless-file-regexp "/[Mm]akefile$\\|/\\.\\(z?profile\\|bash_profile\\|z?login\\|bash_login\\|z?logout\\|bash_logout\\|.+shrc\\|esrc\\|rcrc\\|[kz]shenv\\)$"
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
82 "*On files with this kind of name no magic is inserted or changed."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
83 :type 'regexp
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
84 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
85
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
86
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
87 (defcustom executable-prefix "#! "
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
88 "*Interpreter magic number prefix inserted when there was no magic number."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
89 :type 'string
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
90 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
91
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
92
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
93 (defcustom executable-chmod 73
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
94 "*After saving, if the file is not executable, set this mode.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
95 This mode passed to `set-file-modes' is taken absolutely when negative, or
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
96 relative to the files existing modes. Do nothing if this is nil.
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
97 Typical values are 73 (+x) or -493 (rwxr-xr-x)."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
98 :type 'integer
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
99 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
100
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
101
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
102 (defvar executable-command nil)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
103
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
104 (defcustom executable-self-display "tail"
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
105 "*Command you use with argument `+2' to make text files self-display.
17411
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
106 Note that the like of `more' doesn't work too well under Emacs \\[shell]."
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
107 :type 'string
f0ff96a35eb8 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16128
diff changeset
108 :group 'executable)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
109
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
110
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
111 (defvar executable-font-lock-keywords
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
112 '(("\\`#!.*/\\([^ \t\n]+\\)" 1 font-lock-keyword-face t))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
113 "*Rules for highlighting executable scripts' magic number.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
114 This can be included in `font-lock-keywords' by modes that call `executable'.")
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
115
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
116
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
117 (defvar executable-error-regexp-alist
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
118 '(;; /bin/xyz: syntax error at line 14: `(' unexpected
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
119 ;; /bin/xyz[5]: syntax error at line 8 : ``' unmatched
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
120 ("^\\(.*[^[/]\\)\\(\\[[0-9]+\\]\\)?: .* error .* line \\([0-9]+\\)" 1 3)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
121 ;; /bin/xyz[27]: ehco: not found
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
122 ("^\\(.*[^/]\\)\\[\\([0-9]+\\)\\]: .*: " 1 2)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
123 ;; /bin/xyz: syntax error near unexpected token `)'
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
124 ;; /bin/xyz: /bin/xyz: line 2: `)'
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
125 ("^\\(.*[^/]\\): [^0-9\n]+\n\\1: \\1: line \\([0-9]+\\):" 1 2)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
126 ;; /usr/bin/awk: syntax error at line 5 of file /bin/xyz
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
127 (" error .* line \\([0-9]+\\) of file \\(.+\\)$" 2 1)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
128 ;; /usr/bin/awk: calling undefined function toto
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
129 ;; input record number 3, file awktestdata
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
130 ;; source line 4 of file /bin/xyz
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
131 ("^[^ ].+\n\\( .+\n\\)* line \\([0-9]+\\) of file \\(.+\\)$" 3 2)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
132 ;; makefile:1: *** target pattern contains no `%'. Stop.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
133 ("^\\(.+\\):\\([0-9]+\\): " 1 2))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
134 "Alist of regexps used to match script errors.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
135 See `compilation-error-regexp-alist'.")
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
136
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
137 ;; The C function openp slightly modified would do the trick fine
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
138 (defun executable-find (command)
15744
911086ff68f5 (executable-find): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 15678
diff changeset
139 "Search for COMMAND in exec-path and return the absolute file name.
15750
347aa710b4a9 (executable-find): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15744
diff changeset
140 Return nil if COMMAND is not found anywhere in `exec-path'."
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
141 (let ((list exec-path)
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
142 file)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
143 (while list
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
144 (setq list (if (and (setq file (expand-file-name command (car list)))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
145 (file-executable-p file)
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
146 (not (file-directory-p file)))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
147 nil
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
148 (setq file nil)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
149 (cdr list))))
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
150 file))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
151
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
152
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
153 (defun executable-chmod ()
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
154 "This gets called after saving a file to assure that it be executable.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
155 You can set the absolute or relative mode in variable `executable-chmod' for
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
156 non-executable files."
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
157 (and executable-chmod
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
158 buffer-file-name
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
159 (or (file-executable-p buffer-file-name)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
160 (set-file-modes buffer-file-name
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
161 (if (< executable-chmod 0)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
162 (- executable-chmod)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
163 (logior executable-chmod
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
164 (file-modes buffer-file-name)))))))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
165
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
166
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
167 (defun executable-interpret (command)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
168 "Run script with user-specified args, and collect output in a buffer.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
169 While script runs asynchronously, you can use the \\[next-error] command
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
170 to find the next error."
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
171 (interactive (list (read-string "Run script: "
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
172 (or executable-command
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
173 buffer-file-name))))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
174 (require 'compile)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
175 (save-some-buffers (not compilation-ask-about-save))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
176 (make-local-variable 'executable-command)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
177 (compile-internal (setq executable-command command)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
178 "No more errors." "Interpretation"
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
179 ;; Give it a simpler regexp to match.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
180 nil executable-error-regexp-alist))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
181
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
182
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
183
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
184 ;;;###autoload
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
185 (defun executable-set-magic (interpreter &optional argument
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
186 no-query-flag insert-flag)
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
187 "Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
188 The variables `executable-magicless-file-regexp', `executable-prefix',
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
189 `executable-insert', `executable-query' and `executable-chmod' control
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
190 when and how magic numbers are inserted or replaced and scripts made
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
191 executable."
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
192 (interactive
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
193 (let* ((name (read-string "Name or file name of interpreter: "))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
194 (arg (read-string (format "Argument for %s: " name))))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
195 (list name arg (eq executable-query 'function) t)))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
196 (setq interpreter (if (file-name-absolute-p interpreter)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
197 interpreter
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
198 (or (executable-find interpreter)
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
199 (error "Interpreter %s not recognized" interpreter)))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
200 argument (concat interpreter
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
201 (and argument (string< "" argument) " ")
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
202 argument))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
203 (or buffer-read-only
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
204 (if buffer-file-name
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
205 (string-match executable-magicless-file-regexp
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
206 buffer-file-name))
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
207 (not (or insert-flag executable-insert))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
208 (> (point-min) 1)
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
209 (save-excursion
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
210 (let ((point (point-marker))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
211 (buffer-modified-p (buffer-modified-p)))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
212 (goto-char (point-min))
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
213 (make-local-hook 'after-save-hook)
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
214 (add-hook 'after-save-hook 'executable-chmod nil t)
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
215 (if (looking-at "#![ \t]*\\(.*\\)$")
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
216 (and (goto-char (match-beginning 1))
15560
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
217 ;; If the line ends in a space,
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
218 ;; don't offer to change it.
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
219 (not (= (char-after (1- (match-end 1))) ?\ ))
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
220 (not (string= argument
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
221 (buffer-substring (point) (match-end 1))))
15560
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
222 (if (or (not executable-query) no-query-flag
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
223 (save-window-excursion
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
224 ;; Make buffer visible before question.
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
225 (switch-to-buffer (current-buffer))
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
226 (y-or-n-p (concat "Replace magic number by `"
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
227 executable-prefix argument "'? "))))
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
228 (progn
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
229 (replace-match argument t t nil 1)
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
230 (message "Magic number changed to `%s'"
15678
7a25ca1a7d7d (executable-set-magic): Don't put a space at end
Karl Heuer <kwzh@gnu.org>
parents: 15560
diff changeset
231 (concat executable-prefix argument)))))
14111
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
232 (insert executable-prefix argument ?\n)
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
233 (message "Magic number changed to `%s'"
787061ad42ba (executable-find): Renamed from `executable'.
Karl Heuer <kwzh@gnu.org>
parents: 14024
diff changeset
234 (concat executable-prefix argument)))
15560
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
235 ;;; (or insert-flag
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
236 ;;; (eq executable-insert t)
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
237 ;;; (set-buffer-modified-p buffer-modified-p))
0ce70615b9e9 (executable-set-magic): Add space at end of line
Richard M. Stallman <rms@gnu.org>
parents: 14722
diff changeset
238 )))
12504
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
239 interpreter)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
240
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
241
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
242
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
243 ;;;###autoload
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
244 (defun executable-self-display ()
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
245 "Turn a text file into a self-displaying Un*x command.
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
246 The magic number of such a command displays all lines but itself."
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
247 (interactive)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
248 (if (eq this-command 'executable-self-display)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
249 (setq this-command 'executable-set-magic))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
250 (executable-set-magic executable-self-display "+2"))
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
251
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
252
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
253
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
254 (provide 'executable)
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
255
9f5037515993 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
256 ;; executable.el ends here