File tree 2 files changed +6
-5
lines changed 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ before_install:
14
14
- evm install $EVM_EMACS --use --skip
15
15
- cask
16
16
script :
17
- make test
17
+ - go version
18
+ - make test
Original file line number Diff line number Diff line change 266
266
(forward-list )
267
267
(cond ((looking-at (concat " \\ s-*" go-eldoc--argument-type-regexp))
268
268
(goto-char (match-end 0 )))
269
- ((looking-at " \\ s-*(" )
269
+ ((looking-at-p " \\ s-*(" )
270
270
(skip-chars-forward " \t " )
271
271
(forward-list )))
272
272
(setq name-type (concat name-type
361
361
(defun go-eldoc--retrieve-type (typeinfo symbol )
362
362
(let ((case-fold-search nil ))
363
363
(cond ((string-match (format " ^%s ,,var \\ (.+\\ )$ " symbol) typeinfo)
364
- (match-string 1 typeinfo))
364
+ (match-string-no-properties 1 typeinfo))
365
365
((string-match-p (format " \\ `%s ,,package\\ s-*$" symbol) typeinfo)
366
366
" package" )
367
367
((string-match (format " ^%s ,,\\ (func.+\\ )$ " symbol) typeinfo)
368
- (match-string 1 typeinfo))
368
+ (match-string-no-properties 1 typeinfo))
369
369
((string-match (format " ^%s ,,\\ (.+\\ )$ " symbol) typeinfo)
370
- (match-string 1 typeinfo)))))
370
+ (match-string-no-properties 1 typeinfo)))))
371
371
372
372
(defun go-eldoc--get-cursor-info (bounds )
373
373
(save-excursion
You can’t perform that action at this time.
0 commit comments