bobcat.el 274 B

12345678910
  1. ;; -*- no-byte-compile: t -*-
  2. (defun terminal-init-bobcat ()
  3. "Terminal initialization function for bobcat."
  4. ;; HP terminals usually encourage using ^H as the rubout character
  5. (keyboard-translate ?\177 ?\^h)
  6. (keyboard-translate ?\^h ?\177))
  7. ;;; bobcat.el ends here