+1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
+
+ * diff-mode.el (vc-backend-diff): get rid of the autoloaded advice.
+
1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
* Makefile (setwins): abstract out the command to find subdirectories
(diff-fixup-modifs (point) (cdr diff-unhandled-changes))))
(setq diff-unhandled-changes nil)))
-;;;###autoload
-(defadvice vc-backend-diff (around diff-mode-vc activate)
- ;; BEWARE!! when this is autoloaded, CL might not be available
- (condition-case ()
- (with-current-buffer "*vc-diff*" (setq buffer-read-only nil))
- (error nil))
- ad-do-it
- (condition-case ()
- (with-current-buffer "*vc-diff*"
- (if (memq major-mode '(fundamental-mode diff-mode)) (diff-mode)))
- (error nil)))
-
-
;;;;
;;;; The main function
;;;;