help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Running highlight-regexp in elisp function - not working


From: Angus Comber
Subject: Running highlight-regexp in elisp function - not working
Date: Thu, 3 Apr 2014 13:17:31 +0100

Hi

I want to run this elisp code to highlight various sections of text in a
particular type of log file.

I tried:

(defun abc-log ()
  "abc log file highlighting"
  (interactive)
  (goto-char (point-min))
  (highlight-regexp "message Event.*" hi-yellow)
)

But when I run I get error:

Symbol's value as variable is void: hi-yellow

And it doesn't highlight.

I just want to be able to highlight-regexp on specific text and use
hi-yellow.  What am I doing wrong?

Angus


reply via email to

[Prev in Thread] Current Thread [Next in Thread]