1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

* syntax.c (syntax_temp): Define only if !__GNUC__.

This commit is contained in:
Paul Eggert 2011-04-13 19:27:17 -07:00
parent b7c513d004
commit d4b43b229a
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
* syntax.c (syntax_temp): Define only if !__GNUC__.
* sound.c (current_sound_device, current_sound): Now static.
* search.c (searchbufs, searchbuf_head): Now static.

View File

@ -98,10 +98,12 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
static Lisp_Object Qsyntax_table_p;
static Lisp_Object Qsyntax_table, Qscan_error;
#ifndef __GNUC__
/* Used as a temporary in SYNTAX_ENTRY and other macros in syntax.h,
if not compiled with GCC. No need to mark it, since it is used
only very temporarily. */
Lisp_Object syntax_temp;
#endif
/* This is the internal form of the parse state used in parse-partial-sexp. */