From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jude DaShiell Newsgroups: gmane.emacs.help Subject: emacs startup Date: Wed, 29 Jan 2014 15:58:39 -0500 (EST) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: ger.gmane.org 1391029134 19319 80.91.229.3 (29 Jan 2014 20:58:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 29 Jan 2014 20:58:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 29 21:59:02 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W8cDt-0007YS-W1 for geh-help-gnu-emacs@m.gmane.org; Wed, 29 Jan 2014 21:59:02 +0100 Original-Received: from localhost ([::1]:45261 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8cDt-00045i-K9 for geh-help-gnu-emacs@m.gmane.org; Wed, 29 Jan 2014 15:59:01 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8cDd-00045Y-1O for help-gnu-emacs@gnu.org; Wed, 29 Jan 2014 15:58:49 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8cDZ-0000m2-52 for help-gnu-emacs@gnu.org; Wed, 29 Jan 2014 15:58:44 -0500 Original-Received: from shellworld.net ([69.60.117.94]:56282 helo=server1.shellworld.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8cDY-0000lo-TQ for help-gnu-emacs@gnu.org; Wed, 29 Jan 2014 15:58:41 -0500 Original-Received: by server1.shellworld.net (Postfix, from userid 1024) id C25B62294C; Wed, 29 Jan 2014 14:58:39 -0600 (CST) Original-Received: from localhost (localhost [127.0.0.1]) by server1.shellworld.net (Postfix) with ESMTP id BF6F22294B for ; Wed, 29 Jan 2014 15:58:39 -0500 (EST) X-detected-operating-system: by eggs.gnu.org: Mac OS X 10.x X-Received-From: 69.60.117.94 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:95764 Archived-At: Script started on Wed 29 Jan 2014 04:05:24 PM EST jude@d-216-36-20-9:~$ cat .emacs (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.milkbox.net/packages/"))) (setq inhibit-splash-screen t) (setq emacspeak-play-emacspeak-startup-icon t) (add-hook 'text-mode-hook 'turn-on-auto-fill) (add-hook 'mail-setup-hook 'spook) (add-hook 'mail-setup-hook 'fortune-to-signature) (setq mh-send-uses-spost-flag t) (setq mail-user-agent 'mh-e-user-agent) (setq browse-url-browser-function 'w3m-browse-url) (require 'w3m-load) (require 'org-install) (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (setq org-log-done t) (global-font-lock-mode 1) (add-to-list 'load-path "~/elisp/remember") (setq planner-project "WikiPlanner") (setq muse-project-alist '(("WikiPlanner" ("~/plans" ;; Or wherever you want your planner files to be :default "index" :major-mode planner-mode :visit-link planner-visit-link)))) (require 'planner) (add-hook 'text-mode-hook (lambda () (when (y-or-n-p "Auto Fill mode? ") (turn-on-auto-fill)))) ;; (global-set-key (kbd "C-c q") 'refill-mode) (add-to-list 'load-path "~/elisp/bbdb-2.35/lisp") ;; (1) (require 'bbdb) (bbdb-initialize 'gnus 'message) (setq bbdb-north-american-phone-numbers-p nil) (add-hook 'gnus-startup-hook 'bbdb-insinuate-gnus) (add-hook 'mh-folder-mode-hook 'bbdb-insinuate-mh) (add-hook 'rmail-mode-hook 'bbdb-insinuate-rmail) (add-hook 'mail-setup-hook 'bbdb-insinuate-sendmail) (require 'org-habit) (add-to-list 'load-path (expand-file-name "~/org-mode/lisp")) (add-to-list 'auto-mode-alist '("\\.\\(org\\ |org_archive\\|txt\\)$" . org-mode)) (setq org-agenda-files '("/tmp/test.org")) (global-set-key "\C-cb" 'org-iswitchb) (blink-cursor-mode -1) (setq require-final-newline t) (setq case-fold-search t) (global-set-key [(meta g)] 'goto-line) (require 'twittering-mode) (setq twittering-use-master-password t) (setq twittering-cert-file "/etc/ssl/certs/ca-certificates.crt") jude@d-216-36-20-9:~$ emacs [?25h[?8c[?25h[?0c [?25h[?8c[?25l[?1c-UUU:----F1 *scratch*  All L1 (Fundamental) --------------------------------------------------------------------------- [?25h[?0c[?25h[?8c[?25l[?1cLoading 00debian-vars... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1c/etc/emacs/site-start.d/20apel.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1c50bbdb.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cdictem.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cionaries-common.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdebian-ispell... [?25h[?0c[?25h[?8c[?25l[?1c/var/cache/dictionaries-common/emacsen-ispell-default.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cdebian-ispell...done [?25h[?0c[?25h[?8c[?25l[?1c/var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cetc/emacs/site-start.d/50dictionaries-common [?25h[?0c[?25h[?8c[?25l[?1cecb.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cECB 2.40 uses CEDET 2.0 (contains semantic 2.2, eieio 1.4, speedbar ). [?25h[?0c[?25h[?8c[?25l[?1cLoading /etc/emacs/site-start.d/50ecb.el (source)...done [?25h[?0c[?25h[?8c[?25l[?1cdb.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cmacs-goodies-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cpeak.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cms.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1crc.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cerc-auto... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1c/etc/emacs/site-start.d/50erc.el (source)...done [?25h[?0c[?25h[?8c[?25l[?1cflim.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cgnus-bonus-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1clookup-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cmuse-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cusr/share/emacs24/site-lisp/muse[18@-el/muse-autoloads [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cetc/emacs/site-start.d/50muse-el [?25h[?0c[?25h[?8c[?25l[?1corg-mode.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cpost-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cymacs.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cthon-mode.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1ctwittering-mode.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cw3m-el-snapshot.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1c1planner-el.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cusr/share/emacs24/site-lisp/planner[21@-el/planner-autoloads [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cetc/emacs/site-start.d/51planner-el [?25h[?0c[?25h[?8c[?25l[?1csemi.el (source)... [?25h[?0c[?25h[?8c[?25l[?1cdone [?25h[?0c[?25h[?8c[?25l[?1cFor information about GNU Emacs and the GNU system, type C-h C-a. [?25h[?0c[?25h[?8c[?25l[?1cPackage assoc is obsolete! [?25h[?0c[?25h[?8c[?25l[?1cPackage assoc is obsolete!File Edit Options Buffers Tools Lisp-Interaction Help   ;; This buffer is for notes you don't want to save, and for Lisp evaluation.   ;; If you want to create a file, visit that file with C-x C-f,   ;; then enter the text in that file's own buffer.                                             -UUU:----F1 *scratch*  All L5 (Lisp Interaction) ---------------------------------------------------------------------- [?25h[?0c[?25h[?8c[?25l[?1c(No files need saving)[?25h[?0c[?25h[?8c[?25h[?0c jude@d-216-36-20-9:~$ exit Script done on Wed 29 Jan 2014 04:07:28 PM EST Is there some setting I can put in my .emacs file to tell me which package association is now obsolete? If I knew which package that was, I could fix this. Or could it be a run through with --debug-init on the command line would provide the necessary info? I'm running all of this on a debian Jessie/Sid distribution if that helps any. jude