diff options
| author | Dan Nicolaescu | 2007-12-27 02:22:59 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-12-27 02:22:59 +0000 |
| commit | c43b7df62c0cdc2d3a989d38cb33624b183dd612 (patch) | |
| tree | 5b9161b7eaa79b5e16bf72ee8e44640945a7f26b | |
| parent | cdce374aed500a9b86f96af71d72a618d9639054 (diff) | |
| download | emacs-c43b7df62c0cdc2d3a989d38cb33624b183dd612.tar.gz emacs-c43b7df62c0cdc2d3a989d38cb33624b183dd612.zip | |
Show the functions changed.
| -rw-r--r-- | lisp/ChangeLog | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e9d99a404f2..7dd8e03a299 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,15 +1,21 @@ | |||
| 1 | 2007-12-26 Eric S. Raymond <esr@snark.thyrsus.com> | 1 | 2007-12-26 Eric S. Raymond <esr@snark.thyrsus.com> |
| 2 | 2 | ||
| 3 | * log-view.el: Add Subversion and Mercurial log format samples. | 3 | * log-view.el: Add Subversion and Mercurial log format samples. |
| 4 | * vc-bzr.el, vc-cvs.el, vc.el, vc-mcvs.el, vc-svn.el: Significantly | 4 | |
| 5 | speed up (vc-dired-hook) by arranging for it to call the backend | 5 | * vc.el (vc-dired-hook): Significantly speed up by arranging for |
| 6 | dir-state hook (if it exists) exactly *once*, rather than once per | 6 | it to call the backend dir-state hook (if it exists) |
| 7 | each subdirectory (with dired-state-info calls on all toplevel files | 7 | exactly *once*, rather than once per each subdirectory (with |
| 8 | slowing it down even further). For this to work, backend dir-state | 8 | dired-state-info calls on all toplevel files slowing it down even |
| 9 | methods have to recurse to subdirectories. Most of them already | 9 | further). For this to work, backend dir-state methods have to |
| 10 | did anyway; a few needed *non*-recursion switches removed. This | 10 | recurse to subdirectories. Most of them already did anyway; a few |
| 11 | change mostly removed code that was perversely bad and should have | 11 | needed *non*-recursion switches removed. This change mostly |
| 12 | been shot through the head years ago. | 12 | removed code that was perversely bad and should have been shot |
| 13 | through the head years ago. | ||
| 14 | |||
| 15 | * vc-bzr.el (vc-bzr-dir-state): | ||
| 16 | * vc-cvs.el (vc-cvs-dir-state): | ||
| 17 | * vc-mcvs.el (vc-mcvs-dir-state): | ||
| 18 | * vc-svn.el (vc-svn-dir-state): Recurse in subdirectories. | ||
| 13 | 19 | ||
| 14 | 2007-12-26 Andreas Schwab <schwab@suse.de> | 20 | 2007-12-26 Andreas Schwab <schwab@suse.de> |
| 15 | 21 | ||