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

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

[nongnu] elpa/swift-mode 3026464 206/496: Merge pull request #79 from do


From: ELPA Syncer
Subject: [nongnu] elpa/swift-mode 3026464 206/496: Merge pull request #79 from dougbeal/fix-custom-types
Date: Sun, 29 Aug 2021 11:33:36 -0400 (EDT)

branch: elpa/swift-mode
commit 3026464a32762493da87dc19caf2bda315d21195
Merge: e859716 f193a82
Author: Bozhidar Batsov <bozhidar.batsov@gmail.com>
Commit: Bozhidar Batsov <bozhidar.batsov@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

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