diff options
| author | Paul Eggert | 2011-11-08 12:15:17 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-11-08 12:15:17 -0800 |
| commit | ac6b1f816a09c514f25b26e6236cf8b82b5a777d (patch) | |
| tree | 47d85ea9d132d25cc5eaf0467129a615e11aa50c /src | |
| parent | 09db192c23bc7205341a075b41d101a7bdf786ed (diff) | |
| download | emacs-ac6b1f816a09c514f25b26e6236cf8b82b5a777d.tar.gz emacs-ac6b1f816a09c514f25b26e6236cf8b82b5a777d.zip | |
* s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/s/gnu.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1325dd20bb2..04e58e4742f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-11-08 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-11-08 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). | ||
| 4 | |||
| 5 | 2011-11-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 6 | |||
| 3 | Avoid some portability problems by eschewing 'extern inline' functions. | 7 | Avoid some portability problems by eschewing 'extern inline' functions. |
| 4 | The trivial performance wins aren't worth the portability hassles; see | 8 | The trivial performance wins aren't worth the portability hassles; see |
| 5 | <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html> | 9 | <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html> |
diff --git a/src/s/gnu.h b/src/s/gnu.h index c40f764f8bf..b40f7b0a95b 100644 --- a/src/s/gnu.h +++ b/src/s/gnu.h | |||
| @@ -44,3 +44,5 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 44 | #endif /* !_IO_STDIO_H */ | 44 | #endif /* !_IO_STDIO_H */ |
| 45 | #endif /* emacs */ | 45 | #endif /* emacs */ |
| 46 | 46 | ||
| 47 | /* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the stack. */ | ||
| 48 | #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS | ||