diff options
| author | Chong Yidong | 2006-07-10 18:54:07 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-07-10 18:54:07 +0000 |
| commit | ca331935fe81579869696a17eacf6eb914ab6809 (patch) | |
| tree | 3bc94cba96b342a01ce2a960a78dee22ee86a3bb | |
| parent | 0369eb8545cb960836e64e81d14bf1db357a925f (diff) | |
| download | emacs-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.el | 3 |
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* |