diff options
| author | Dave Love | 2002-05-09 17:59:01 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-09 17:59:01 +0000 |
| commit | 3d7db6f1392eb0fb59b02f7d237f51ad395bbe76 (patch) | |
| tree | 0c97a03ff5592659917d321cc36ae19b67fe78c7 /src | |
| parent | ccd04f96be7391aa167ebc2634a563f15c58ce54 (diff) | |
| download | emacs-3d7db6f1392eb0fb59b02f7d237f51ad395bbe76.tar.gz emacs-3d7db6f1392eb0fb59b02f7d237f51ad395bbe76.zip | |
(syntax_temp) [!__GNUC__]: Declare.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index d323e85b233..2cd137184f8 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Declarations having to do with GNU Emacs syntax tables. | 1 | /* Declarations having to do with GNU Emacs syntax tables. |
| 2 | Copyright (C) 1985, 93, 94, 97, 1998 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 93, 94, 97, 1998, 2002 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -110,6 +110,7 @@ enum syntaxcode | |||
| 110 | ? XCDR (temp) \ | 110 | ? XCDR (temp) \ |
| 111 | : Qnil); }) | 111 | : Qnil); }) |
| 112 | #else | 112 | #else |
| 113 | extern Lisp_Object syntax_temp; | ||
| 113 | #define SYNTAX(c) \ | 114 | #define SYNTAX(c) \ |
| 114 | (syntax_temp = SYNTAX_ENTRY ((c)), \ | 115 | (syntax_temp = SYNTAX_ENTRY ((c)), \ |
| 115 | (CONSP (syntax_temp) \ | 116 | (CONSP (syntax_temp) \ |