This isn't help with the xemacs/vm problem directly, but it is something
you could use to help diagnose the problem.

When calling xemacs/etc, you can direct standard error and standard out to
files (this will solve the text-moving-too-fast problem). Here's how using
tcsh:

If you want to just redirect stdout:
xemacs > FILE

If you want to redirect stdout and stderr to one file: 
xemacs >& FILE

If you want to redirect stdout and stderr different places:
(xemacs > STDOUT_FILE) >& STDERR_FILE

If you only want to redirect stderr:
(xemacs > 1) >& FILE

Someone who uses bash more than me could tell you how to do it there. This
may not be new knowledge, but it should help to get all that error
information. In general, there are a lot of times when text scrolls
quickly, and there is usually a way to get at it.

Hope this helps.

-- Erik



-------------------------------------------------------
This SF.net email is sponsored by: ApacheCon, November 18-21 in
Las Vegas (supported by COMDEX), the only Apache event to be
fully supported by the ASF. http://www.apachecon.com
_______________________________________________
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to