;;; GNU Emacs 22 expects this file to contain a function definition ;;; `terminal-init-screen'. GNU Emacs 21 expects this file to contain ;;; a bunch of top-level forms. ;;; This is for GNU Emacs 22 (defun terminal-init-screen-256color () "Terminal initialization function for screen." ;; Use the xterm color initialization code. (load "term/xterm") (xterm-register-default-colors) (tty-set-up-initial-frame-faces)) ;;; This is for GNU Emacs 21 (if (= 21 emacs-major-version) (load "xterm-256color"))