File tree Expand file tree Collapse file tree 3 files changed +12
-18
lines changed Expand file tree Collapse file tree 3 files changed +12
-18
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,6 @@ commands:
51
51
command : eldev -dtT compile --warnings-as-errors
52
52
53
53
jobs :
54
- test-ubuntu-emacs-27 :
55
- docker :
56
- - image : silex/emacs:27-ci
57
- entrypoint : bash
58
- steps :
59
- - setup
60
- - test
61
-
62
54
test-ubuntu-emacs-28 :
63
55
docker :
64
56
- image : silex/emacs:28-ci
@@ -119,7 +111,6 @@ workflows:
119
111
version : 2
120
112
ci-test-matrix :
121
113
jobs :
122
- - test-ubuntu-emacs-27
123
114
- test-ubuntu-emacs-28
124
115
- test-ubuntu-emacs-29
125
116
- test-ubuntu-emacs-30
Original file line number Diff line number Diff line change 8
8
; ; URL: http://github.com/clojure-emacs/inf-clojure
9
9
; ; Keywords: processes, comint, clojure
10
10
; ; Version: 3.3.0-snapshot
11
- ; ; Package-Requires: ((emacs "27 .1") (clojure-mode "5.11"))
11
+ ; ; Package-Requires: ((emacs "28 .1") (clojure-mode "5.11"))
12
12
13
13
; ; This file is not part of GNU Emacs.
14
14
@@ -1004,12 +1004,16 @@ of forms."
1004
1004
(while (not (eobp ))
1005
1005
(while (looking-at " \n " )
1006
1006
(delete-char 1 ))
1007
+ ; ; NOTE: There is no special API for that in
1008
+ ; ; `clojure-ts-mode' , so probably for now lets keep this
1009
+ ; ; `clojure-mode' function.
1007
1010
(unless (eobp )
1008
- ; ; NOTE: There is no special API for that in
1009
- ; ; `clojure-ts-mode' , so probably for now lets keep this
1010
- ; ; `clojure-mode' function.
1011
- (clojure-forward-logical-sexp)
1012
- (forward-char )))
1011
+ (clojure-forward-logical-sexp))
1012
+ (unless (eobp )
1013
+ (forward-char )
1014
+ ; ; Remove an empty line at the end of the buffer.
1015
+ (when (eobp )
1016
+ (delete-char -1 ))))
1013
1017
(buffer-substring-no-properties (point-min ) (point-max ))))
1014
1018
(scan-error str)))
1015
1019
Original file line number Diff line number Diff line change 88
88
(ict-with-assess-buffers
89
89
((a (insert " @" )))
90
90
(with-current-buffer a
91
- (expect
92
- (ict-bounds-string (inf-clojure-completion-bounds-of-expr-at-point))
93
- :not :to-be nil ))))
91
+ (expect (inf-clojure-completion-bounds-of-expr-at-point)
92
+ :to-be nil ))))
94
93
95
94
(it " computes bounds for [symbol"
96
95
(ict-with-assess-buffers
You can’t perform that action at this time.
0 commit comments