aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog16
-rw-r--r--lisp/pcvs-info.el3
2 files changed, 18 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b4d3b0d4c62..0955a5da684 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,19 @@
12006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
4 (ewoc--insert-new-node): Don't insert trailing newline.
5 Instead, adjust succesor nodes' start markers.
6 (ewoc--refresh-node): Delete all text from current node's start
7 marker to the next one's; adjust successor nodes' start markers.
8 (ewoc--create): Doc fixes.
9 (ewoc--refresh): Don't insert newline.
10 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
11 * pcvs.el (cvs-make-cvs-buffer): Specify
12 extra newline for ewoc's header and footer.
13 (cvs-update-header): Update initial header recognition.
14 Append newline to final header and footer values.
15 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
16
12006-05-17 Richard Stallman <rms@gnu.org> 172006-05-17 Richard Stallman <rms@gnu.org>
2 18
3 * files.el (file-name-extension): Doc fix. 19 * files.el (file-name-extension): Doc fix.
diff --git a/lisp/pcvs-info.el b/lisp/pcvs-info.el
index 4aaa5add58d..085f294e6fb 100644
--- a/lisp/pcvs-info.el
+++ b/lisp/pcvs-info.el
@@ -379,7 +379,8 @@ For use by the cookie package."
379 ;; or nothing 379 ;; or nothing
380 ""))) 380 "")))
381 (format "%-11s %s %-11s %-11s %s" 381 (format "%-11s %s %-11s %-11s %s"
382 side status type base file))))))) 382 side status type base file))))
383 "\n")))
383 384
384 385
385(defun cvs-fileinfo-update (fi fi-new) 386(defun cvs-fileinfo-update (fi fi-new)