aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2014-04-16 12:43:46 -0700
committerPaul Eggert2014-04-16 12:43:46 -0700
commit290d7ac277986bd118e594a8100b3f40e4492cb1 (patch)
treed63a3aa61cac577dd119665edaffe2def8d194e2 /src/alloc.c
parent37eccff4f72c5a36dcd4b89d417b0047aab84e50 (diff)
parentb262bde327db2cd9b2f01f2d3ed946d0b188cb9d (diff)
downloademacs-290d7ac277986bd118e594a8100b3f40e4492cb1.tar.gz
emacs-290d7ac277986bd118e594a8100b3f40e4492cb1.zip
Merge from emacs-24; up to 2014-04-16T15:28:26Z!monnier@iro.umontreal.ca
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 8b7c8aab535..6bee0c990c4 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2685,7 +2685,9 @@ DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0,
2685 ***********************************************************************/ 2685 ***********************************************************************/
2686 2686
2687/* Sometimes a vector's contents are merely a pointer internally used 2687/* Sometimes a vector's contents are merely a pointer internally used
2688 in vector allocation code. Usually you don't want to touch this. */ 2688 in vector allocation code. On the rare platforms where a null
2689 pointer cannot be tagged, represent it with a Lisp 0.
2690 Usually you don't want to touch this. */
2689 2691
2690static struct Lisp_Vector * 2692static struct Lisp_Vector *
2691next_vector (struct Lisp_Vector *v) 2693next_vector (struct Lisp_Vector *v)