]> git.eshelyaron.com Git - emacs.git/commitdiff
Make toml-ts-mode-indent-offset into natnum
authorStefan Kangas <stefankangas@gmail.com>
Tue, 1 Aug 2023 10:58:06 +0000 (12:58 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 1 Aug 2023 12:39:35 +0000 (14:39 +0200)
* lisp/textmodes/toml-ts-mode.el (toml-ts-mode-indent-offset):
Make into natnum instead of integer.

lisp/textmodes/toml-ts-mode.el

index 2c49103437228bfd6e7f3aeb5b9cd2c5d4da895e..193c83f9aecb649db9c6535e9d634cd0b3be9571 100644 (file)
@@ -39,8 +39,8 @@
 (defcustom toml-ts-mode-indent-offset 2
   "Number of spaces for each indentation step in `toml-ts-mode'."
   :version "29.1"
-  :type 'integer
-  :safe 'integerp
+  :type 'natnum
+  :safe 'natnump
   :group 'toml)
 
 (defvar toml-ts-mode--syntax-table