comparison src/fns.c @ 1849:21549d437f09

[xemacs-hg @ 2004-01-03 21:54:41 by james] GCPROd variables cannot be declared REGISTER. Thanks to James McPherson.
author james
date Sat, 03 Jan 2004 21:54:42 +0000
parents 465bd3c7d932
children c66036f59678
comparison
equal deleted inserted replaced
1848:a186edab3fc8 1849:21549d437f09
1777 Also see: `reverse'. 1777 Also see: `reverse'.
1778 */ 1778 */
1779 (list)) 1779 (list))
1780 { 1780 {
1781 struct gcpro gcpro1, gcpro2; 1781 struct gcpro gcpro1, gcpro2;
1782 REGISTER Lisp_Object prev = Qnil; 1782 Lisp_Object prev = Qnil;
1783 REGISTER Lisp_Object tail = list; 1783 Lisp_Object tail = list;
1784 1784
1785 /* We gcpro our args; see `nconc' */ 1785 /* We gcpro our args; see `nconc' */
1786 GCPRO2 (prev, tail); 1786 GCPRO2 (prev, tail);
1787 while (!NILP (tail)) 1787 while (!NILP (tail))
1788 { 1788 {