]> git.eshelyaron.com Git - emacs.git/commitdiff
(after-save-hook): Customize, with
authorDave Love <fx@gnu.org>
Fri, 9 Jun 2000 09:42:05 +0000 (09:42 +0000)
committerDave Love <fx@gnu.org>
Fri, 9 Jun 2000 09:42:05 +0000 (09:42 +0000)
make-buffer-file-executable-if-script-p as an option.

lisp/ChangeLog
lisp/files.el

index 7cc7198b3715d3f1b36118657081fc1a9f036905..33c5f78f5d144afbf194d8f2afadb42901097d54 100644 (file)
@@ -1,3 +1,14 @@
+2000-06-09  Dave Love  <fx@gnu.org>
+
+       * executable.el: Byte compile dynamic.
+       (executable-insert): Change custom type.
+       (executable-find): Add autoload cookie.
+       (make-buffer-file-executable-if-script-p): New function.  From
+       Noah Friedman.
+
+       * files.el (after-save-hook): Customize, with
+       make-buffer-file-executable-if-script-p as an option.
+
 2000-06-09  Kenichi Handa  <handa@etl.go.jp>
 
        * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
index dfeefc1277e97584545510bc96c7fa167cf466f2..a4e205c47f4461e3ab47fdf245902af82990d0f6 100644 (file)
@@ -2495,8 +2495,11 @@ the last real save, but optional arg FORCE non-nil means delete anyway."
 (defvar auto-save-hook nil
   "Normal hook run just before auto-saving.")
 
-(defvar after-save-hook nil
-  "Normal hook that is run after a buffer is saved to its file.")
+(defcustom after-save-hook nil
+  "Normal hook that is run after a buffer is saved to its file."
+  :options '(make-buffer-file-executable-if-script-p)
+  :type 'hook
+  :group 'files)
 
 (defvar save-buffer-coding-system nil
   "If non-nil, use this coding system for saving the buffer.