diff options
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/vc.el | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dd961545539..c67526e0656 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2008-05-04 Andreas Schwab <schwab@suse.de> + * vc.el: Require dired when compiling. + * minibuffer.el (completion--insert-strings): Don't delete past bol. diff --git a/lisp/vc.el b/lisp/vc.el index 4f9dfee7724..ed0ddc154cf 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -673,6 +673,7 @@ (require 'ewoc) (eval-when-compile + (require 'dired) (require 'cl)) (unless (assoc 'vc-parent-buffer minor-mode-alist) |