comparison src/data.c @ 5660:0951c61a12f8

(Faset): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 22 Jan 1994 16:13:30 +0000
parents 6d6d042b3df6
children 21232a5400ea
comparison
equal deleted inserted replaced
5659:32a02ab40d58 5660:0951c61a12f8
1310 else 1310 else
1311 return XVECTOR (array)->contents[idxval]; 1311 return XVECTOR (array)->contents[idxval];
1312 } 1312 }
1313 1313
1314 DEFUN ("aset", Faset, Saset, 3, 3, 0, 1314 DEFUN ("aset", Faset, Saset, 3, 3, 0,
1315 "Store into the element of ARRAY at index INDEX the value NEWVAL.\n\ 1315 "Store into the element of ARRAY at index IDX the value NEWELT.\n\
1316 ARRAY may be a vector or a string. INDEX starts at 0.") 1316 ARRAY may be a vector or a string. IDX starts at 0.")
1317 (array, idx, newelt) 1317 (array, idx, newelt)
1318 register Lisp_Object array; 1318 register Lisp_Object array;
1319 Lisp_Object idx, newelt; 1319 Lisp_Object idx, newelt;
1320 { 1320 {
1321 register int idxval; 1321 register int idxval;