aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2006-07-10 18:54:07 +0000
committerChong Yidong2006-07-10 18:54:07 +0000
commitca331935fe81579869696a17eacf6eb914ab6809 (patch)
tree3bc94cba96b342a01ce2a960a78dee22ee86a3bb
parent0369eb8545cb960836e64e81d14bf1db357a925f (diff)
downloademacs-ca331935fe81579869696a17eacf6eb914ab6809.tar.gz
emacs-ca331935fe81579869696a17eacf6eb914ab6809.zip
(c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error.
-rw-r--r--lisp/progmodes/cc-awk.el3
1 files changed, 2 insertions, 1 deletions
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 @@
107(eval-and-compile 107(eval-and-compile
108 (defconst c-awk-escaped-nl "\\\\[\n\r]")) 108 (defconst c-awk-escaped-nl "\\\\[\n\r]"))
109;; Matches an escaped newline. 109;; Matches an escaped newline.
110(defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*")) 110(eval-and-compile
111 (defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*")))
111;; Matches a possibly empty sequence of escaped newlines. Used in 112;; Matches a possibly empty sequence of escaped newlines. Used in
112;; awk-font-lock-keywords. 113;; awk-font-lock-keywords.
113;; (defconst c-awk-escaped-nls*-with-space* 114;; (defconst c-awk-escaped-nls*-with-space*