Skip to content

Commit

Permalink
Add trailing semicolon to sentinel.
Browse files Browse the repository at this point in the history
  • Loading branch information
aemoncannon committed Sep 6, 2010
1 parent 5aae41b commit 1be8fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/elisp/ensime-auto-complete.el
Expand Up @@ -47,7 +47,7 @@ target of the call. Point should be be over last character of call target."
(forward-char)
;; toString is a method of Any object. exit() has bottom
;; type, so the typechecker should permit this anywhere.
(insert ".toString;{exit()}"))
(insert ".toString;{exit()};"))

(ensime-write-buffer)
(ensime-rpc-members-for-type-at-point prefix))))
Expand Down Expand Up @@ -113,7 +113,7 @@ changes will be forgotten."
;; if we are at the end of a method body, the
;; method context will be extended to include
;; the completion point.
(insert " {exit()}")) ()
(insert " {exit()};")) ()
(ensime-write-buffer)
(ensime-rpc-name-completions-at-point
prefix is-constructor))))
Expand Down

0 comments on commit 1be8fb6

Please sign in to comment.