From ca331935fe81579869696a17eacf6eb914ab6809 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 10 Jul 2006 18:54:07 +0000 Subject: [PATCH] (c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error. --- lisp/progmodes/cc-awk.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index 4a475784106..c93843f3f82 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el @@ -107,7 +107,8 @@ (eval-and-compile (defconst c-awk-escaped-nl "\\\\[\n\r]")) ;; Matches an escaped newline. -(defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*")) +(eval-and-compile + (defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*"))) ;; Matches a possibly empty sequence of escaped newlines. Used in ;; awk-font-lock-keywords. ;; (defconst c-awk-escaped-nls*-with-space* -- 2.39.5