Mercurial > hg > xemacs-beta
comparison PROBLEMS @ 1389:6355bae896e3
[xemacs-hg @ 2003-03-27 12:57:36 by stephent]
use .Xresources not .Xdefaults <87adfhezt5.fsf@tleepslib.sk.tsukuba.ac.jp>
regexp-tests fix
author | stephent |
---|---|
date | Thu, 27 Mar 2003 12:57:53 +0000 |
parents | 6aa23bb3da6b |
children | 049c7092a496 |
comparison
equal
deleted
inserted
replaced
1388:aa75c11622fc | 1389:6355bae896e3 |
---|---|
988 directory. Try using that one. | 988 directory. Try using that one. |
989 | 989 |
990 *** My X resources used to work, and now some of them are being ignored. | 990 *** My X resources used to work, and now some of them are being ignored. |
991 | 991 |
992 Check the resources in .../etc/Emacs.ad (which is the same as the file | 992 Check the resources in .../etc/Emacs.ad (which is the same as the file |
993 sample.Xdefaults). Perhaps some of the default resources built in to | 993 sample.Xresources). Perhaps some of the default resources built in to |
994 emacs are now overriding your existing resources. Copy and edit the | 994 emacs are now overriding your existing resources. Copy and edit the |
995 resources in Emacs.ad as necessary. | 995 resources in Emacs.ad as necessary. |
996 | 996 |
997 *** I have focus problems when I use `M-o' to switch to another screen | 997 *** I have focus problems when I use `M-o' to switch to another screen |
998 without using the mouse. | 998 without using the mouse. |
1199 | 1199 |
1200 Some compilers have trouble with gmalloc.c and ralloc.c; try recompiling | 1200 Some compilers have trouble with gmalloc.c and ralloc.c; try recompiling |
1201 without optimization. If that doesn't work, try recompiling with | 1201 without optimization. If that doesn't work, try recompiling with |
1202 SYSTEM_MALLOC defined, and/or with REL_ALLOC undefined. | 1202 SYSTEM_MALLOC defined, and/or with REL_ALLOC undefined. |
1203 | 1203 |
1204 *** A position you specified in .Xdefaults is ignored, using twm. | 1204 *** A position you specified in .Xresources is ignored, using twm. |
1205 | 1205 |
1206 twm normally ignores "program-specified" positions. | 1206 twm normally ignores "program-specified" positions. |
1207 You can tell it to obey them with this command in your `.twmrc' file: | 1207 You can tell it to obey them with this command in your `.twmrc' file: |
1208 | 1208 |
1209 UsePPosition "on" #allow clents to request a position | 1209 UsePPosition "on" #allow clents to request a position |
1333 Or you could set TERMCAP only when you set TERM--which should not | 1333 Or you could set TERMCAP only when you set TERM--which should not |
1334 happen in a non-login shell. | 1334 happen in a non-login shell. |
1335 | 1335 |
1336 *** The popup menu appears at the bottom/right of my screen. | 1336 *** The popup menu appears at the bottom/right of my screen. |
1337 | 1337 |
1338 You probably have something like the following in your ~/.Xdefaults | 1338 You probably have something like the following in your ~/.Xresources |
1339 | 1339 |
1340 Emacs.geometry: 81x56--9--1 | 1340 Emacs.geometry: 81x56--9--1 |
1341 | 1341 |
1342 Use the following instead | 1342 Use the following instead |
1343 | 1343 |
1380 2) Recompile regex.c with REGEX_MALLOC defined. | 1380 2) Recompile regex.c with REGEX_MALLOC defined. |
1381 | 1381 |
1382 ** AIX | 1382 ** AIX |
1383 *** Your Delete key sends a Backspace to the terminal, using an AIXterm. | 1383 *** Your Delete key sends a Backspace to the terminal, using an AIXterm. |
1384 | 1384 |
1385 The solution is to include in your .Xdefaults the lines: | 1385 The solution is to include in your .Xresources the lines: |
1386 | 1386 |
1387 *aixterm.Translations: #override <Key>BackSpace: string(0x7f) | 1387 *aixterm.Translations: #override <Key>BackSpace: string(0x7f) |
1388 aixterm*ttyModes: erase ^? | 1388 aixterm*ttyModes: erase ^? |
1389 | 1389 |
1390 This makes your Backspace key send DEL (ASCII 127). | 1390 This makes your Backspace key send DEL (ASCII 127). |