emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109752: Set `executable-prefix' to "


From: Bastien Guerry
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109752: Set `executable-prefix' to "#!" instead of "#! ".
Date: Wed, 22 Aug 2012 18:58:14 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109752
committer: Bastien Guerry <address@hidden>
branch nick: trunk
timestamp: Wed 2012-08-22 18:58:14 +0200
message:
  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.
modified:
  lisp/ChangeLog
  lisp/progmodes/executable.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-22 09:22:08 +0000
+++ b/lisp/ChangeLog    2012-08-22 16:58:14 +0000
@@ -1,3 +1,9 @@
+2012-08-22  Bastien Guerry  <address@hidden>
+
+       * 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  <address@hidden>
 
        * window.el (walk-window-tree, window-with-parameter): New
@@ -400,7 +406,7 @@
 
 2012-08-13  Bastien Guerry  <address@hidden>
 
-       * window.el (special-display-popup-frame): Small docstring
+       * window.el (special-display-popup-frame): Minor docstring
        enhancement.  (Bug#12172)
 
 2012-08-13  Andreas Schwab  <address@hidden>

=== modified file 'lisp/progmodes/executable.el'
--- a/lisp/progmodes/executable.el      2012-04-09 13:05:48 +0000
+++ b/lisp/progmodes/executable.el      2012-08-22 16:58:14 +0000
@@ -84,7 +84,7 @@
   :group 'executable)
 
 
-(defcustom executable-prefix "#! "
+(defcustom executable-prefix "#!"
   "Interpreter magic number prefix inserted when there was no magic number."
   :type 'string
   :group 'executable)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]