branch: externals/wcheck-mode commit 4bc8b09a7debde757acd3d5f531767e5ecbcfd71 Author: Teemu Likonen <tliko...@iki.fi> Commit: Teemu Likonen <tliko...@iki.fi>
Reformat comments --- wcheck-mode.el | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/wcheck-mode.el b/wcheck-mode.el index f6043ca..0104b59 100644 --- a/wcheck-mode.el +++ b/wcheck-mode.el @@ -1,5 +1,6 @@ ;;; wcheck-mode.el --- General interface for text checkers +;; Copyright (C) 2009-2016 Teemu Likonen <tliko...@iki.fi> ;; Author: Teemu Likonen <tliko...@iki.fi> ;; Maintainer: Teemu Likonen <tliko...@iki.fi> @@ -7,9 +8,6 @@ ;; URL: https://github.com/tlikonen/wcheck-mode ;; Keywords: text spell check languages ispell - -;; Copyright (C) 2009-2016 Teemu Likonen <tliko...@iki.fi> -;; ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or (at @@ -48,16 +46,16 @@ ;; A general interface for text checkers ;; ;; Wcheck mode is a general-purpose text-checker interface for Emacs -;; text editor. Wcheck mode a minor mode which provides an on-the-fly -;; text checker. It checks the visible text area, as you type, and -;; possibly highlights some parts of it. What is checked and how are all +;; text editor. Wcheck mode a minor mode which provides an on-the-fly +;; text checker. It checks the visible text area, as you type, and +;; possibly highlights some parts of it. What is checked and how are all ;; configurable. ;; ;; Wcheck mode can use external programs or Emacs Lisp functions for -;; checking text. For example, Wcheck mode can be used with +;; checking text. For example, Wcheck mode can be used with ;; spell-checker programs such as Ispell, Enchant and Hunspell, but ;; actually any tool that can receive text from standard input stream -;; and send text to standard output can be used. Wcheck mode sends parts +;; and send text to standard output can be used. Wcheck mode sends parts ;; of buffer's content to an external program or an Emacs Lisp function ;; and, relying on their output, decides if some parts of text should be ;; marked in the buffer.