;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;  These two commands let you use Backspace (Ctrl-h) as Delete in emacs.
;;;;  The second one sets M-h (Esc h) to be the help key.
;;;;  Copy this four-line block unchanged to the end of your .emacs file.
;;;;  Please, don't temper with the two uncommented lines!
;;;;  Especially don't temper with (or try to match) quotation marks!!!
;;;;  Janos (János)

;; Translate C-h to DEL
(keyboard-translate ?\C-h ?\C-?)
;; Define M-h to help  ---  please don't add an extra ' after help!
(global-set-key "\M-h" 'help)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;