branch: elpa/swift-mode
commit f193a82e4bdb5bc22eb8eac3c423f0685edd191b
Author: Douglas Beal <g...@dougbeal.com>
Commit: Douglas Beal <g...@dougbeal.com>

    defcustom types for swift-indent was incorrectly set to intergerp
---
 swift-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/swift-mode.el b/swift-mode.el
index 3fd39d0..7646ecd 100644
--- a/swift-mode.el
+++ b/swift-mode.el
@@ -48,17 +48,17 @@
 (defcustom swift-indent-offset 4
   "Defines the indentation offset for Swift code."
   :group 'swift
-  :type 'integerp)
+  :type 'integer)
 
 (defcustom swift-indent-switch-case-offset 0
   "Defines the indentation offset for cases in a switch statement."
   :group 'swift
-  :type 'integerp)
+  :type 'integer)
 
 (defcustom swift-indent-multiline-statement-offset 2
   "Defines the indentation offset for for multiline statements."
   :group 'swift
-  :type 'integerp
+  :type 'integer
   :package-version '(swift-mode "0.3.0"))
 
 (defcustom swift-repl-executable

Reply via email to