Mitchell Surface writes: >Can somebody tell me how I can get the backspace and delete keys in >Xemacs to work the way I expect them to, i.e. backspace deletes the >previous character and delete deletes the current character?
Try this: ;; Fix the DEL key (setq delete-key-deletes-forward t) (unless window-system (puthash ?\^? 'backspace keyboard-translate-table))