aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2016-06-19 00:53:51 +0200
committerPaul Eggert2016-06-19 00:53:51 +0200
commitd9088290efb49a352c3c23da25a734ed3e269923 (patch)
treee9c09623885e31c90756c0c74373b2e7886674e7 /src/alloc.c
parent8085d5fcc4240a39458ead26ae2279590bb9f629 (diff)
parent2317c61868044dc1fea58d9e81f35d354f24fd69 (diff)
downloademacs-d9088290efb49a352c3c23da25a734ed3e269923.tar.gz
emacs-d9088290efb49a352c3c23da25a734ed3e269923.zip
Merge from origin/emacs-25
2317c61 Fix last todo-mode change 5d4d8a3 Improve last todo-mode fix d7084f2 Fix todo-mode use of minibuffer completion keymap (bug#23695). 27dec52 * src/alloc.c (ALIGN): Avoid error on DragonFly BSD. (Bug#23... f526191 * lisp/emacs-lisp/nadvice.el (advice--make-docstring): Avoid ... e881070 * lisp/help-fns.el (describe-function-1): Avoid reporting adv... d308aa1 Minor grammar fix (bug#23746) 20de667 Doc fixes for grammar and typos (bug#23746) a67a4e5 * doc/lispref/processes.texi (Process Buffers): Minor rewordi... 27f440e Add cross-reference to ELisp manual 10802d8 ; make change-history-commit 4b2d77d * lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix (bu... 12e009e Restore initial undo boundary with viper 291fe0a Revert "Fix viper undo breakage from undo-boundary changes" 6921f4a Fix dbus crash on 32-bit Cygwin
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 3feed51b1e9..8173615992f 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -486,6 +486,11 @@ static void *pure_alloc (size_t, int);
486 ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \ 486 ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \
487 : ((x) + (y) - 1) & ~ ((y) - 1)) 487 : ((x) + (y) - 1) & ~ ((y) - 1))
488 488
489/* Bug#23764 */
490#ifdef ALIGN
491# undef ALIGN
492#endif
493
489/* Return PTR rounded up to the next multiple of ALIGNMENT. */ 494/* Return PTR rounded up to the next multiple of ALIGNMENT. */
490 495
491static void * 496static void *