aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2011-06-08 12:18:46 -0700
committerPaul Eggert2011-06-08 12:18:46 -0700
commite46bb31a9f62b157947257b444fb44b1f9a42db6 (patch)
tree9ddde31cfec639b1d1345962bad84d28514c24ef /src/alloc.c
parent6349ae4d9c0e2a2986e2800dcea6a029fbc60d23 (diff)
downloademacs-e46bb31a9f62b157947257b444fb44b1f9a42db6.tar.gz
emacs-e46bb31a9f62b157947257b444fb44b1f9a42db6.zip
* alloc.c (allocate_pseudovector): Don't use EMACS_INT when int would do.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index e04f60baf03..4530e0a7377 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2832,7 +2832,7 @@ struct Lisp_Vector *
2832allocate_pseudovector (int memlen, int lisplen, EMACS_INT tag) 2832allocate_pseudovector (int memlen, int lisplen, EMACS_INT tag)
2833{ 2833{
2834 struct Lisp_Vector *v = allocate_vectorlike (memlen); 2834 struct Lisp_Vector *v = allocate_vectorlike (memlen);
2835 EMACS_INT i; 2835 int i;
2836 2836
2837 /* Only the first lisplen slots will be traced normally by the GC. */ 2837 /* Only the first lisplen slots will be traced normally by the GC. */
2838 for (i = 0; i < lisplen; ++i) 2838 for (i = 0; i < lisplen; ++i)