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.
This commit is contained in:
Bastien Guerry 2012-08-22 18:58:14 +02:00
parent ff687885ea
commit 0fcd3d9fa4
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2012-08-22 Bastien Guerry <bzg@altern.org>
* progmodes/executable.el (executable-prefix): Set to "#!" instead
of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
gives details on why the space is never needed.
2012-08-22 Martin Rudalics <rudalics@gmx.at>
* window.el (walk-window-tree, window-with-parameter): New
@ -400,7 +406,7 @@
2012-08-13 Bastien Guerry <bzg@gnu.org>
* window.el (special-display-popup-frame): Small docstring
* window.el (special-display-popup-frame): Minor docstring
enhancement. (Bug#12172)
2012-08-13 Andreas Schwab <schwab@linux-m68k.org>

View file

@ -84,7 +84,7 @@ When this is `function', only ask when called non-interactively."
:group 'executable)
(defcustom executable-prefix "#! "
(defcustom executable-prefix "#!"
"Interpreter magic number prefix inserted when there was no magic number."
:type 'string
:group 'executable)