Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/5/84; site spp1.UUCP Path: utzoo!watmath!clyde!bonnie!akgua!sdcsvax!sdcrdcf!trwrb!trwspp!spp2!spp1!colbert From: colbert@spp1.UUCP Newsgroups: net.emacs Subject: Emacs Initialization & TERMCAP Questions Message-ID: <114@spp1.UUCP> Date: Wed, 31-Oct-84 17:29:03 EST Article-I.D.: spp1.114 Posted: Wed Oct 31 17:29:03 1984 Date-Received: Sat, 3-Nov-84 07:41:13 EST Distribution: net Organization: TRW, Redondo Beach CA Lines: 42 I have 2 questions: 1) I'm using a Cit-101 & for some reason Emacs thinks that I only have 79 columns eventhough the termcap file indicates that the Cit-101 has 80 columns. Does anyone now how I can get Emacs to use all 80 columns? 2) I would like to have text-mode as my default mode when entering Emacs (unless the file is a scribe, TeX, or C file), however, I haven't been able to get my profile configured properly. (All of the other modes seem to work as desired) Does anyone know how to do this? Currently, my profile file looks like the following: (autoload "time" "time") (autoload "text-mode" "text-mode.ml") (autoload "TeX-mode" "TeX-mode.ml") (autoload "scribe-mode" "scribe.ml") (autoload "power-c-mode" "/home/colbert/emacs/maclib/power-c.ml") (autoload "electric-lisp-mode" "electric-lisp.ml") . . . ; set default mode as text-mode (load "text-mode.ml") (text-mode) ; set alternate modes when appropos (auto-execute "power-c-mode" "*.c") (auto-execute "power-c-mode" "*.h") (auto-execute "electric-lisp-mode" "*.ml") (auto-execute "TeX-mode" "*.tex") (auto-execute "scribe-mode" "*.mss") (time) Thanks, Ed Colbert