# HG changeset patch # User aidan # Date 1154982809 0 # Node ID 9b8943d0d12a2fbd648cf18e13dd5188ada33cbe # Parent dd935ef485d27a24ff10d0d35537e449d9c50546 [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. diff -r dd935ef485d2 -r 9b8943d0d12a lisp/ChangeLog --- 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 diff -r dd935ef485d2 -r 9b8943d0d12a src/ChangeLog --- 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 diff -r dd935ef485d2 -r 9b8943d0d12a src/doc.c --- 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);