From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: jreeseue Newsgroups: gmane.emacs.help Subject: Emacs 24.0.94.1 slow to load on OS X Date: Sat, 3 Mar 2012 09:36:12 -0800 (PST) Message-ID: <33435127.post@talk.nabble.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1330798327 23185 80.91.229.3 (3 Mar 2012 18:12:07 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 3 Mar 2012 18:12:07 +0000 (UTC) To: Help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Mar 03 19:12:07 2012 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 1S3tR8-0007t6-Hm for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Mar 2012 19:12:06 +0100 Original-Received: from localhost ([::1]:39363 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3tR7-0003Wn-RU for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Mar 2012 13:12:05 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:55704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3ssR-00078q-VX for Help-gnu-emacs@gnu.org; Sat, 03 Mar 2012 12:36:17 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3ssQ-0000Ru-0A for Help-gnu-emacs@gnu.org; Sat, 03 Mar 2012 12:36:15 -0500 Original-Received: from sam.nabble.com ([216.139.236.26]:60341) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3ssP-0000Rn-Ry for Help-gnu-emacs@gnu.org; Sat, 03 Mar 2012 12:36:13 -0500 Original-Received: from isper.nabble.com ([192.168.236.156]) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1S3ssO-0000iH-1u for Help-gnu-emacs@gnu.org; Sat, 03 Mar 2012 09:36:12 -0800 X-Nabble-From: jreeseue@gmail.com X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 216.139.236.26 X-Mailman-Approved-At: Sat, 03 Mar 2012 13:11:48 -0500 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:83918 Archived-At: Hello, I am running OS X 10.7.3 with Emacs 24.0.94.1 and am experiencing a fairly long time for emacs to load. My .emacs file looks like (push "/usr/local/Cellar/emacs/HEAD/share/emacs/24.0.94/lisp" load-path) (add-hook 'c-mode-hook 'turn-on-font-lock) (show-paren-mode) (setq make-backup-files nil) ;; do not make backup files ;;keyboard navigation (define-key global-map (kbd "RET") 'newline-and-indent) (global-set-key "\C-n"(lambda () (interactive) (next-line 5))) (global-set-key "\C-p" (lambda () (interactive) (next-line -5))) (global-set-key "\C-u" (lambda () (interactive) (next-line -1))) (global-set-key "\C-o" (lambda () (interactive) (next-line 1))) (setq auto-mode-alist (cons '("\\.tex$" . latex-mode) auto-mode-alist)) (setq tex-mode-hook '(lambda ()(auto-fill-mode 1))) (defun count-words-region (start end) (interactive "r") (save-excursion (let ((n 0)) (goto-char start) (while (< (point) end) (if (forward-word 1) (setq n (1+ n)))) (message "Region has %d words" n) n))) ; hooks for text & latex modes (add-hook 'text-mode-hook 'turn-on-auto-fill) (add-hook (and 'tex-mode-hook 'text-mode-hook) 'flyspell-mode t Additionally, occasionally when emacs opens a file the formatting is completely different and some commands don't operate properly. I took this .emacs file from my previous machine which was running emacs 23 and am wondering if there is anything in here that could be causing these issues. Thanks. -- View this message in context: http://old.nabble.com/Emacs-24.0.94.1-slow-to-load-on-OS-X-tp33435127p33435127.html Sent from the Emacs - Help mailing list archive at Nabble.com.