From: Richard M. Stallman Date: Sat, 21 Jan 1995 22:23:22 +0000 (+0000) Subject: [NO_REMAP]: #undef static. X-Git-Tag: emacs-19.34~5346 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e114e160d342360e736ad6c7b1df1acb9d032f36;p=emacs.git [NO_REMAP]: #undef static. --- diff --git a/src/config.in b/src/config.in index a944e362ee3..201fcde6e0f 100644 --- a/src/config.in +++ b/src/config.in @@ -231,6 +231,12 @@ typedef unsigned long EMACS_UINT; #endif /* not NO_SHORTNAMES */ #endif /* SHORTNAMES */ +/* If no remapping takes place, static variables cannot be dumped as + pure, so don't worry about the `static' keyword. */ +#ifdef NO_REMAP +#undef static +#endif + /* Define `subprocesses' should be defined if you want to have code for asynchronous subprocesses (as used in M-x compile and M-x shell).