.emacs
changeset 111 fcea9d3b79e1
parent 102 25585e240b4a
child 112 3d1b437969cb
--- a/.emacs	Sun Dec 21 22:12:34 2008 +0200
+++ b/.emacs	Tue Dec 23 18:04:28 2008 +0200
@@ -2,7 +2,7 @@
 ;;
 ;; Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>
 ;;
-;; ~/.emacs firstly load ~/.emacs-my-pre, then ~/.emacs-my, then ~/.emacs-my-post.
+;; ~/.emacs firstly load ~/.emacs-pre, then ~/.emacs-my, then ~/.emacs-post.
 
 ;; ======================================================================
 ;; Load path.
@@ -16,21 +16,21 @@
 (add-to-list 'load-path my-el-dir)
 (add-to-list 'load-path my-usr-el-dir)
 
-(defvar dot-emacs-my-pre (expand-file-name "~/.emacs-my-pre")
+(defvar dot-emacs-pre (expand-file-name "~/.emacs-pre")
   "Path to file with pre-loaded custom settings.")
-(defvar dot-emacs-my-post (expand-file-name "~/.emacs-my-post")
+(defvar dot-emacs-post (expand-file-name "~/.emacs-post")
   "Path to file with post-loaded custom settings.")
 
 ;; pre-load custom settings
-(if (file-exists-p dot-emacs-my-pre)
-    (load dot-emacs-my-pre))
+(if (file-exists-p dot-emacs-pre)
+    (load dot-emacs-pre))
 
 ;; load main customization
 (load "~/.emacs-my")
 
 ;; post-load custom settings
-(if (file-exists-p dot-emacs-my-post)
-    (load dot-emacs-my-post))
+(if (file-exists-p dot-emacs-post)
+    (load dot-emacs-post))
 
 (custom-set-variables
   ;; custom-set-variables was added by Custom.