Set `executable-prefix' to "#!" instead of "#! ".
authorBastien Guerry <bastien1@free.fr>
Wed, 22 Aug 2012 16:58:14 +0000 (18:58 +0200)
committerBastien Guerry <bastien1@free.fr>
Wed, 22 Aug 2012 16:58:14 +0000 (18:58 +0200)
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.

lisp/ChangeLog
lisp/progmodes/executable.el

index f8ed5ce..a5464d5 100644 (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
 
 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>
index e514257..981a075 100644 (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)