Mercurial > hg > xemacs-beta
changeset 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 | dd935ef485d2 |
children | 19e39904f5d8 |
files | lisp/ChangeLog src/ChangeLog src/doc.c |
diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Aug 06 22:14:10 2006 +0000 +++ b/lisp/ChangeLog Mon Aug 07 20:33:29 2006 +0000 @@ -8,7 +8,7 @@ * keydefs.el (global-tty-map): "\C-z" is suspend-or-iconify-emacs on the TTY, not suspend-emacs. Fixes problems that arose where pressing C-z in a - gnuclient fram suspended the whole process. + gnuclient frame suspended the whole process. 2006-08-05 Aidan Kehoe <kehoea@parhasard.net>
--- a/src/ChangeLog Sun Aug 06 22:14:10 2006 +0000 +++ b/src/ChangeLog Mon Aug 07 20:33:29 2006 +0000 @@ -3,7 +3,7 @@ * doc.c (Fsnarf_documentation): Add an assertion and a comment, rather than crashing in the 76584th call of hash_string when someone's using a DOC file that - doesn't match the format. + doesn't conform to format. 2006-08-05 Aidan Kehoe <kehoea@parhasard.net>
--- a/src/doc.c Sun Aug 06 22:14:10 2006 +0000 +++ b/src/doc.c Mon Aug 07 20:33:29 2006 +0000 @@ -742,8 +742,8 @@ if (p != end) { end = qxestrchr (p, '\n'); - /* If you trigger a failure with of this assertion, you probably - configured with --quick-build and need to to rebuild your DOC + /* If you trigger a failure with this assertion, you probably + configured with --quick-build and need to rebuild your DOC file. */ assert((end - p - 2) > -1); sym = oblookup (Vobarray, p + 2, end - p - 2);