> > When shelling from stata to Emacs, I sometime get the message: > "Screen size too small". How to solve this? This is caused by emacs not understanding your terminal type. The reason it doesn't understand your terminal type is that the terminal type is being set incorrectly by PennNet. To check what your terminal type is currently set to, type: $ set | grep TERM this should display a few lines, check to see what the TERM variable is set to. Most likely it is 'unknown' and should probably be vt100. To set the TERM variable to vt100, type: $ TERM=vt100 $ export TERM Remember, unix is case sensitive, so you must use the capitalization shown in the previous two lines This will only set the terminal type for this session, if you logout, and log back in agian, you will have to set it again. Matt p.s. Don't type the '$' in the lines above, that's just the Unix prompt