File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,14 @@ it from list if one of the following conditions are hold:
159
159
(setq indent-tabs-mode nil )
160
160
)
161
161
162
+ (make-obsolete #'haskell-cabal-get-setting
163
+ #'haskell-cabal--get-field
164
+ " March 14, 2016" )
165
+ (defalias #'haskell-cabal-get-setting #'haskell-cabal--get-field
166
+ " Try to read value of field with NAME from current buffer.
167
+ Obsolete function. Defined for backward compatibility. Use
168
+ `haskell-cabal--get-field' instead." )
169
+
162
170
(defun haskell-cabal--get-field (name )
163
171
" Try to read value of field with NAME from current buffer."
164
172
(save-excursion
@@ -183,6 +191,15 @@ it from list if one of the following conditions are hold:
183
191
(setq val (replace-match " " t t val))))
184
192
val)))))
185
193
194
+
195
+ (make-obsolete #'haskell-cabal-guess-setting
196
+ #'haskell-cabal-get-field
197
+ " March 14, 2016" )
198
+ (defalias #'haskell-cabal-guess-setting #'haskell-cabal-get-field
199
+ " Read the value of field with NAME from project's cabal file.
200
+ Obsolete function. Defined for backward compatibility. Use
201
+ `haskell-cabal-get-field' instead." )
202
+
186
203
;;;### autoload
187
204
(defun haskell-cabal-get-field (name )
188
205
" Read the value of field with NAME from project's cabal file.
You can’t perform that action at this time.
0 commit comments