diff options
| author | Glenn Morris | 2007-09-15 19:50:16 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-09-15 19:50:16 +0000 |
| commit | fc2b776c39af096a2823e809cc5dbdbd3c1b6a82 (patch) | |
| tree | 8c022d4edda503a895a480271858178de4f6d9b2 /src | |
| parent | 29100cfa0ea33588ee7b48d33858c97fb19c1767 (diff) | |
| download | emacs-fc2b776c39af096a2823e809cc5dbdbd3c1b6a82.tar.gz emacs-fc2b776c39af096a2823e809cc5dbdbd3c1b6a82.zip | |
No longer define `static' as nothing.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/s/hpux.h | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3719e00f228..868e007c863 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-09-15 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * s/hpux.h: No longer define `static' as nothing. | ||
| 4 | |||
| 1 | 2007-09-14 Glenn Morris <rgm@gnu.org> | 5 | 2007-09-14 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * fringe.c (init_fringe_bitmap) <swap nibble>: Move to file scope. | 7 | * fringe.c (init_fringe_bitmap) <swap nibble>: Move to file scope. |
diff --git a/src/s/hpux.h b/src/s/hpux.h index 5f407a661e1..1fb83a7a075 100644 --- a/src/s/hpux.h +++ b/src/s/hpux.h | |||
| @@ -167,9 +167,13 @@ Boston, MA 02110-1301, USA. */ | |||
| 167 | 167 | ||
| 168 | /* USG systems tend to put everything declared static | 168 | /* USG systems tend to put everything declared static |
| 169 | into the initialized data area, which becomes pure after dumping Emacs. | 169 | into the initialized data area, which becomes pure after dumping Emacs. |
| 170 | Foil this. Emacs carefully avoids static vars inside functions. */ | 170 | Foil this. Emacs carefully avoids static vars inside functions. |
| 171 | http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg00368.html | ||
| 172 | As of at least HPUX 11.11 (2000), it seems this workaround is no | ||
| 173 | longer needed. Try uncommenting the following if you have problems | ||
| 174 | on older versions. */ | ||
| 171 | 175 | ||
| 172 | #define static | 176 | /*#define static */ |
| 173 | 177 | ||
| 174 | /* Define extra libraries to load. | 178 | /* Define extra libraries to load. |
| 175 | This should have -lBSD, but that library is said to make | 179 | This should have -lBSD, but that library is said to make |