Skip to content

Commit

Permalink
Release version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PillFall committed Feb 29, 2020
2 parents 4412703 + 266c257 commit 13a8cc6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Change Log
Joar Buitago <jebuitragoc@unal.edu.co>
v0.1.1, 2020-01-21
v0.1.2, 2020-01-21

All notable changes to this project will be documented in this file.

Expand All @@ -13,6 +13,10 @@ link:https://semver.org/spec/v2.0.0.html[Semantic Versioning].

== [Unreleased]

== [0.1.2]
=== Fixed
- Correction fails if language is set.

== [0.1.1]
=== Fixed
- Redundant code for obtaining the java arguments.
Expand Down
2 changes: 1 addition & 1 deletion ReadMe.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= languagetool.el
Joar Buitago <jebuitragoc@unal.edu.co>
v0.1.1, 2020-01-21
v0.1.2, 2020-01-21

Use LanguageTool as your Emacs grammar and spelling corrector.

Expand Down
4 changes: 2 additions & 2 deletions languagetool.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Joar Buitrago <jebuitragoc@unal.edu.co>
;; Keywords: grammar text docs tools
;; URL: https://github.com/PillFall/Emacs-LanguageTool.el
;; Version: 0.1.1
;; Version: 0.1.2
;; Package-Requires: ((emacs "25.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -186,7 +186,7 @@ when correcting."
(list "--json")))
(if (string= languagetool-default-language "auto")
(setq arguments (append arguments (list "-adl")))
(setq arguments (append (list "-l" languagetool-default-language))))
(setq arguments (append arguments (list "-l" languagetool-default-language))))
(when (stringp languagetool-mother-tongue)
(setq arguments (append arguments (list "-m" languagetool-mother-tongue))))
(let ((rules ""))
Expand Down

0 comments on commit 13a8cc6

Please sign in to comment.