Mercurial > hg > xemacs-beta
comparison src/doc.c @ 3548:9b8943d0d12a
[xemacs-hg @ 2006-08-07 20:33:23 by aidan]
Correct a few spelling and grammar mistakes on my part. Thank you Jerry
James, Vin Shelton.
author | aidan |
---|---|
date | Mon, 07 Aug 2006 20:33:29 +0000 |
parents | 2ba8b7a25429 |
children | 69e6352406f0 |
comparison
equal
deleted
inserted
replaced
3547:dd935ef485d2 | 3548:9b8943d0d12a |
---|---|
740 while (p != end && *p != '\037') p++; | 740 while (p != end && *p != '\037') p++; |
741 /* p points to ^_Ffunctionname\n or ^_Vvarname\n. */ | 741 /* p points to ^_Ffunctionname\n or ^_Vvarname\n. */ |
742 if (p != end) | 742 if (p != end) |
743 { | 743 { |
744 end = qxestrchr (p, '\n'); | 744 end = qxestrchr (p, '\n'); |
745 /* If you trigger a failure with of this assertion, you probably | 745 /* If you trigger a failure with this assertion, you probably |
746 configured with --quick-build and need to to rebuild your DOC | 746 configured with --quick-build and need to rebuild your DOC |
747 file. */ | 747 file. */ |
748 assert((end - p - 2) > -1); | 748 assert((end - p - 2) > -1); |
749 sym = oblookup (Vobarray, p + 2, end - p - 2); | 749 sym = oblookup (Vobarray, p + 2, end - p - 2); |
750 if (SYMBOLP (sym)) | 750 if (SYMBOLP (sym)) |
751 { | 751 { |