emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/typescript-mode 7e8b9641ae 096/222: Mark typescript indent


From: ELPA Syncer
Subject: [nongnu] elpa/typescript-mode 7e8b9641ae 096/222: Mark typescript indent variables as safe for file local customizations
Date: Sun, 6 Feb 2022 16:59:21 -0500 (EST)

branch: elpa/typescript-mode
commit 7e8b9641ae1a15e15bebdfce1a48c69643a01199
Author: Daniel Kraus <daniel@kraus.my>
Commit: Daniel Kraus <daniel@kraus.my>

    Mark typescript indent variables as safe for file local customizations
---
 typescript-mode.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/typescript-mode.el b/typescript-mode.el
index e342e3e7bf..16e3f1f890 100644
--- a/typescript-mode.el
+++ b/typescript-mode.el
@@ -581,12 +581,14 @@ Match group 1 is the name of the macro.")
 (defcustom typescript-indent-level 4
   "Number of spaces for each indentation step in `typescript-mode'."
   :type 'integer
+  :safe 'integerp
   :group 'typescript)
 
 (defcustom typescript-expr-indent-offset 0
   "Number of additional spaces used for indentation of continued expressions.
 The value must be no less than minus `typescript-indent-level'."
   :type 'integer
+  :safe 'integerp
   :group 'typescript)
 
 (defcustom typescript-auto-indent-flag t



reply via email to

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