monnier pushed a commit to branch master
in repository elpa.

commit bc8ae71ed7aa662c8efb8d957d83bf8d0dc86424
Author: Teemu Likonen <tliko...@iki.fi>
Date:   Tue Aug 3 07:09:30 2010 +0000

    Muutetaan jäsenninfunktion nimi: wcheck-parse-suggestions-lines
---
 wcheck-mode.el |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/wcheck-mode.el b/wcheck-mode.el
index caf0920..d263344 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -173,7 +173,7 @@ suggestion-parser
         the `suggestion-parser' if you get suggestions from
         Ispell-like program with its \"-a\" command-line option.
 
-        `wcheck-parse-suggestions-line' turns each line in the
+        `wcheck-parse-suggestions-lines' turns each line in the
         output of `suggestion-program' to individual substitute
         suggestions.
 
@@ -273,7 +273,7 @@ variable:
                     suggestion-parser)
              (choice :format "%[Value Menu%] %v" :value nil
                      (const :tag "Ispell" wcheck-parse-suggestions-ispell)
-                     (const :tag "Lines" wcheck-parse-suggestions-line)
+                     (const :tag "Lines" wcheck-parse-suggestions-lines)
                      (const :tag "Whitespace" wcheck-parse-suggestions-ws)
                      (function :tag "Function" :format "%v" :value 
ignore))))))))
 
@@ -1186,7 +1186,7 @@ SUGGESTIONS is a list of strings. Return user's choice 
(string)."
     nil))
 
 
-(defun wcheck-parse-suggestions-line ()
+(defun wcheck-parse-suggestions-lines ()
   "Parser for newline-separated suggestions."
   (delete-dups (split-string (buffer-substring-no-properties (point-min)
                                                              (point-max))

Reply via email to