From 2b41312a29751501c8ca07a3280b221077dae64a Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 5 Dec 2020 14:20:44 +0100 Subject: [PATCH] Emacs: Don't make my/reformat-save local by default. It is set to nil with `:local t`. --- init.d/basics/global-variables.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init.d/basics/global-variables.el b/init.d/basics/global-variables.el index 4f6c202..3611e6e 100644 --- a/init.d/basics/global-variables.el +++ b/init.d/basics/global-variables.el @@ -1,6 +1,6 @@ ;;; global-variables.el --- Set some global variables. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-12-05T10:45:47+0100> +;; Time-stamp: <2020-12-05T14:20:19+0100> ;;; Commentary: ;; * Banish customizations. @@ -57,8 +57,7 @@ "Make changes to the buffer on save. If t, run `whitespace-cleanup', `clang-format-buffer' and so on." :type 'boolean - :safe #'booleanp - :local t))) + :safe #'booleanp))) (provide 'basics/global-variables) ;;; global-variables.el ends here