]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 10 Jul 2006 18:54:07 +0000 (18:54 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 10 Jul 2006 18:54:07 +0000 (18:54 +0000)
lisp/progmodes/cc-awk.el

index 4a475784106be092da4e3d860e2f65aab4cf8799..c93843f3f82a52d43aed7d782d5b94781b520630 100644 (file)
 (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*