Changeset 6932 for lang/elisp
- Timestamp:
- 02/19/08 19:17:53 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/elisp/auto-save-buffers-enhanced/auto-save-buffers-enhanced.el
r3001 r6932 55 55 ;; svk, put the code below into your .emacs: 56 56 ;; 57 ;; ;; If you're using CVS or Subversion 57 ;; ;; If you're using CVS or Subversion or git 58 58 ;; (require 'auto-save-buffers-enhanced) 59 59 ;; (auto-save-buffers-enhanced-include-only-checkout-path t) 60 60 ;; (auto-save-buffers-enhanced t) 61 61 ;; 62 ;; ;; If you're using svk62 ;; ;; If you're using also svk 63 63 ;; (require 'auto-save-buffers-enhanced) 64 64 ;; (setq auto-save-buffers-enhanced-use-svk-flag t) … … 86 86 ;;; Change Log: 87 87 88 ;; 2008-02-19: 89 ;; * added git support. 90 ;; * fixed a bug: this package didn't work with SVN and CVS if 91 ;; use-svk-flag is non-nil. 92 ;; 88 93 ;; 2007-12-10: 89 94 ;; * added a command, `auto-save-buffers-enhanced-reload-svk'. … … 142 147 (progn 143 148 (setq auto-save-buffers-enhanced-include-regexps nil) 144 ( ifauto-save-buffers-enhanced-use-svk-flag145 (auto-save-buffers-enhanced-add-svk-checkout-path-into-include-regexps)146 (add-hook 'find-file-hook147 'auto-save-buffers-enhanced-add-checkout-path-into-include-regexps)))))149 (when auto-save-buffers-enhanced-use-svk-flag 150 (auto-save-buffers-enhanced-add-svk-checkout-path-into-include-regexps)) 151 (add-hook 'find-file-hook 152 'auto-save-buffers-enhanced-add-checkout-path-into-include-regexps)))) 148 153 149 154 ;;;; Command … … 216 221 (while t 217 222 (if (or (file-exists-p ".svn") 218 (file-exists-p ".cvs")) 223 (file-exists-p ".cvs") 224 (file-exists-p ".git")) 219 225 (setq checkout-path default-directory)) 220 226 (cd "..")
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)