branch: elpa-admin commit 0c236524a099e659e60b2e8796f9b26be190e31f Author: Teemu Likonen <tliko...@iki.fi> Commit: Teemu Likonen <tliko...@iki.fi>
Revert "Add an explicit OPERATION-MODE "nil" in README's examples" This reverts commit 0805ab15f05455676335c4f1f2644b6a2cbd1217. --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index fe8b39c..fd809f1 100644 --- a/README +++ b/README @@ -244,7 +244,7 @@ string with empty string. (regexp-end . "$") (regexp-discard . "") (read-or-skip-faces - (nil nil))) + (nil))) Sometimes it's useful to highlight only a small number of keywords in buffer. The following example adds a language called "Highlight FIXMEs" @@ -263,7 +263,7 @@ modes FIXMEs are marked everywhere. (face . highlight) (read-or-skip-faces ((emacs-lisp-mode c-mode) read font-lock-comment-face) - (nil nil))) + (nil))) The following example adds a language "email" for highlighting email addresses from buffer and creating an action menu which has option to @@ -277,7 +277,7 @@ start composing mail to that address. Here's the language configuration: (regexp-end . "\\>") (action-program . email-action-menu) (read-or-skip-faces - (nil nil))) + (nil))) Then the needed functions: