aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
authorKen Raeburn1999-10-25 04:58:18 +0000
committerKen Raeburn1999-10-25 04:58:18 +0000
commit7539e11fca07e5837010aaae18eaaefc7e51cf52 (patch)
tree679815b93c740067026d3a86165a2433f71fbad6 /src/callint.c
parent3a7093d84fa090b8f2458cef0376b81de4bd77ff (diff)
downloademacs-7539e11fca07e5837010aaae18eaaefc7e51cf52.tar.gz
emacs-7539e11fca07e5837010aaae18eaaefc7e51cf52.zip
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/callint.c b/src/callint.c
index 644f9bc55c0..8efab94673b 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -148,11 +148,11 @@ quotify_args (exp)
148 Lisp_Object exp; 148 Lisp_Object exp;
149{ 149{
150 register Lisp_Object tail; 150 register Lisp_Object tail;
151 register struct Lisp_Cons *ptr; 151 Lisp_Object next;
152 for (tail = exp; CONSP (tail); tail = ptr->cdr) 152 for (tail = exp; CONSP (tail); tail = next)
153 { 153 {
154 ptr = XCONS (tail); 154 next = XCDR (tail);
155 ptr->car = quotify_arg (ptr->car); 155 XCAR (tail) = quotify_arg (XCAR (tail));
156 } 156 }
157 return exp; 157 return exp;
158} 158}