aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/executable.el
diff options
context:
space:
mode:
authorBastien Guerry2012-08-22 18:58:14 +0200
committerBastien Guerry2012-08-22 18:58:14 +0200
commit0fcd3d9fa4cdee0a9a067f74c75b9e053502e294 (patch)
tree33b8e8cc037d4700acb7f3c7355f6782100100b4 /lisp/progmodes/executable.el
parentff687885ea32bf7016618681724473745fb9ea40 (diff)
downloademacs-0fcd3d9fa4cdee0a9a067f74c75b9e053502e294.tar.gz
emacs-0fcd3d9fa4cdee0a9a067f74c75b9e053502e294.zip
Set `executable-prefix' to "#!" instead of "#! ".
See http://www.in-ulm.de/~mascheck/various/shebang/#details for details on why the blank space is never needed. Thanks to Leo for the patch.
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r--lisp/progmodes/executable.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index e5142571972..981a075b4f0 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -84,7 +84,7 @@ When this is `function', only ask when called non-interactively."
84 :group 'executable) 84 :group 'executable)
85 85
86 86
87(defcustom executable-prefix "#! " 87(defcustom executable-prefix "#!"
88 "Interpreter magic number prefix inserted when there was no magic number." 88 "Interpreter magic number prefix inserted when there was no magic number."
89 :type 'string 89 :type 'string
90 :group 'executable) 90 :group 'executable)