X-Git-Url: http://gitweb.michael.orlitzky.com/?p=emacs.d.git;a=blobdiff_plain;f=.emacs;h=d263d76ec5a4a47977c3dddf14083731088319a2;hp=87d2eb905bc4a2f7751a5f9fa06a55c35054e0b0;hb=d04875beada19984184492b67c564f44c6fb37f1;hpb=83f0c9d6b7078bc444ef02cb043f1be68399bbee diff --git a/.emacs b/.emacs index 87d2eb9..d263d76 100644 --- a/.emacs +++ b/.emacs @@ -7,6 +7,9 @@ ;; Set the frame title to the name of the buffer, if supported. (setq frame-title-format "%b") +;; Currently needed to make Emacs 23 behave sanely. +'(diff-jump-to-old-file t) + ;; Disable the menu/tool bars when we're using X. (menu-bar-mode -1) (when window-system @@ -59,14 +62,8 @@ (load-library "autoloads") -(defun load-erc() - (interactive) - (ignore-errors - (load-library "erc") - ) - ) - -(global-set-key "\C-ce" 'load-erc) +;; Open private IRC messages in a new buffer. +(setq erc-auto-query 'buffer) ;; Never ask me anything, emacs. @@ -76,6 +73,8 @@ (load-library "diff-buffer-against-file") (global-set-key "\C-cd" 'diff-buffer-against-file) +(load-library "fix-nonstandard-chars") + ;; These next functions override the defaults provided by emacs. They ;; prevent warning messages related to file modification times,