aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/PROBLEMS15
1 files changed, 14 insertions, 1 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index aede0f7c1d2..eb7dffe41ab 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -1263,7 +1263,20 @@ be carried out at the same time:
1263 package. 1263 package.
1264 1264
12652) If the connection is very slow, you might also want to consider 12652) If the connection is very slow, you might also want to consider
1266 switching off scroll bars, menu bar, and tool bar. 1266 switching off scroll bars, menu bar, and tool bar. Adding the
1267 following forms to your .emacs file will accomplish that, but only
1268 after the the initial frame is displayed:
1269
1270 (scroll-bar-mode -1)
1271 (menu-bar-mode -1)
1272 (tool-bar-mode -1)
1273
1274 For still quicker startup, put these X resources in your .Xdefaults
1275 file:
1276
1277 Emacs.verticalScrollBars: off
1278 Emacs.menuBar: off
1279 Emacs.toolBar: off
1267 1280
12683) Use ssh to forward the X connection, and enable compression on this 12813) Use ssh to forward the X connection, and enable compression on this
1269 forwarded X connection (ssh -XC remotehostname emacs ...). 1282 forwarded X connection (ssh -XC remotehostname emacs ...).