If you get an error message like:

 Warning: Shell widget "emacs" has an invalid geometry specification: "80x40 "

and windows don't appear where you expect them to, the problem is that you
have trailing spaces in your resource specification in your ~/.Xresources
file. You can see this in the error message, in that there is a space between
the last digit of your specification and the trailing double quotes.

The version of X used in the previous release (X11R3) did not interpret
trailing spaces as an error, it just ignored them.  However, with Release 7.0
of Athena, a newer version of X is used which is more strict about spaces in
resource specifications.

To fix this, you should remove the trailing space from your resource
specification in your .Xresources file.

To check for trailing spaces in your other resource specifications, you can
type:

	egrep '[^I ]$' ~/.Xresources

where the ^I is produced by typing control-v control-i.  This will print out
the lines of your .Xresources file that have trailing blanks or tabs that need
to be removed.
