From: Chong Yidong Date: Mon, 10 Jul 2006 18:54:07 +0000 (+0000) Subject: (c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error. X-Git-Tag: emacs-pretest-22.0.90~1571 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca331935fe81579869696a17eacf6eb914ab6809;p=emacs.git (c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error. --- 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*