1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 16:51:46 -07:00

Fix typo: "size", not "ap->size"

Copied from Perforce
 Change: 182074
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2013-05-22 13:41:33 +01:00
parent 4b22229ef5
commit 6097320dfe

View file

@ -576,7 +576,7 @@ as refilling the buffer.
The *reserve* operation thus looks like this::
if (ap->alloc + size <= ap->limit) {
ap->alloc += ap->size;
ap->alloc += size;
p = ap->init;
} else {
res = mps_ap_fill(&p, ap, size);