branch: elpa/swift-mode
commit 3026464a32762493da87dc19caf2bda315d21195
Merge: e859716 f193a82
Author: Bozhidar Batsov <bozhidar.bat...@gmail.com>
Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>

    Merge pull request #79 from dougbeal/fix-custom-types
    
    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