.emacs
changeset 96 1c9a7ccc584a
parent 92 359f03f8a64b
parent 83 d2eaf2ed6d1c
child 102 25585e240b4a
--- a/.emacs	Thu Nov 13 09:39:58 2008 +0200
+++ b/.emacs	Sun Dec 07 17:35:34 2008 -0500
@@ -1,7 +1,8 @@
 ;; -*- mode: lisp; coding: cp1251 -*-
 ;;
 ;; Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>
-;; Copyright (C) 2008 by Гавенко Алескандр
+;;
+;; ~/.emacs firstly load ~/.emacs-my-pre, then ~/.emacs-my, then ~/.emacs-my-post.
 
 ;; ======================================================================
 ;; Load path.
@@ -15,21 +16,21 @@
 (add-to-list 'load-path my-el-dir)
 (add-to-list 'load-path my-usr-el-dir)
 
-(defvar dot-emacs-my-custom-pre (expand-file-name "~/.emacs-my-custom-pre")
+(defvar dot-emacs-my-pre (expand-file-name "~/.emacs-my-pre")
   "Path to file with pre-loaded custom settings.")
-(defvar dot-emacs-my-custom-post (expand-file-name "~/.emacs-my-custom-post")
+(defvar dot-emacs-my-post (expand-file-name "~/.emacs-my-post")
   "Path to file with post-loaded custom settings.")
 
 ;; pre-load custom settings
-(if (file-exists-p dot-emacs-my-custom-pre)
-    (load dot-emacs-my-custom-pre))
+(if (file-exists-p dot-emacs-my-pre)
+    (load dot-emacs-my-pre))
 
 ;; load main customization
 (load "~/.emacs-my")
 
 ;; post-load custom settings
-(if (file-exists-p dot-emacs-my-custom-post)
-    (load dot-emacs-my-custom-post))
+(if (file-exists-p dot-emacs-my-post)
+    (load dot-emacs-my-post))
 
 (custom-set-variables
   ;; custom-set-variables was added by Custom.