File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 102
102
(defcustom haskell-indent-offset 4
103
103
" Indentation of Haskell statements with respect to containing block."
104
104
:type 'integer
105
+ :safe #'natnump
105
106
:group 'haskell-indent )
106
107
107
108
(defcustom haskell-indent-literate-Bird-default-offset 1
108
109
" Default number of blanks after > in a Bird style literate script."
109
110
:type 'integer
111
+ :safe #'natnump
110
112
:group 'haskell-indent )
111
113
112
114
(defcustom haskell-indent-rhs-align-column 0
113
115
" Column on which to align right-hand sides (use 0 for ad-hoc alignment)."
114
116
:type 'integer
117
+ :safe #'natnump
115
118
:group 'haskell-indent )
116
119
117
120
(defun haskell-indent-point-to-col (apoint )
@@ -324,6 +327,7 @@ It deals with both Bird style and non Bird-style scripts."
324
327
(defcustom haskell-indent-look-past-empty-line t
325
328
" If nil, indentation engine will not look past an empty line for layout points."
326
329
:group 'haskell-indent
330
+ :safe #'booleanp
327
331
:type 'boolean )
328
332
329
333
(defun haskell-indent-start-of-def ()
@@ -1020,6 +1024,7 @@ OPEN is the start position of the comment in which point is."
1020
1024
This is necessary in the \" do\" layout under Haskell-98.
1021
1025
See http://hackage.haskell.org/trac/haskell-prime/wiki/DoAndIfThenElse"
1022
1026
:group 'haskell-indent
1027
+ :safe #'booleanp
1023
1028
:type 'integer )
1024
1029
1025
1030
(defun haskell-indent-closing-keyword (start )
You can’t perform that action at this time.
0 commit comments