branch: elpa-admin commit e148a063e2065c2ab25b25c770f863383153d690 Author: Teemu Likonen <tliko...@iki.fi> Commit: Teemu Likonen <tliko...@iki.fi>
Put quotes `...' around the example function add-word-to-dictionary --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 134b7eb..10e70f6 100644 --- a/README +++ b/README @@ -192,7 +192,7 @@ configuration above except that `action-parser' function is a bit more complicated. It's a lambda expression which calls `wcheck-parser-ispell-suggestions' and then adds "Add to dictionary" option in the front of the spelling suggestions list. Choosing that -option from the actions menu will call function add-word-to-dictionary +option from the actions menu will call function `add-word-to-dictionary' (which doesn't exist yet). ("British English" @@ -205,7 +205,7 @@ option from the actions menu will call function add-word-to-dictionary 'add-word-to-dictionary) (wcheck-parser-ispell-suggestions))))) -Now we need to define the function add-word-to-dictionary. Below is an +Now we need to define the function `add-word-to-dictionary'. Below is an incomplete example. To make it complete you'll have to find out how and where your spelling checker stores user dictionaries. Then write code that adds a new string to the dictionary.