changeset 71764:77752270b25a

(c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error.
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 10 Jul 2006 18:54:07 +0000
parents bedc73f663be
children 6aa63dccd38d
files lisp/progmodes/cc-awk.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/cc-awk.el	Mon Jul 10 18:52:13 2006 +0000
+++ b/lisp/progmodes/cc-awk.el	Mon Jul 10 18:54:07 2006 +0000
@@ -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*