summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2006-05-18 12:09:16 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2006-05-18 12:09:16 +0000
commit438dd27db31c84723aeac7fe3cd8b06fb84c63a6 (patch)
tree9e3c1776e9993cdfe6abdc201c293e023c5c680f
parentc93a67c54c52f8bf21fa837b6dc84ac132992578 (diff)
downloademacs-438dd27db31c84723aeac7fe3cd8b06fb84c63a6.tar.gz
(cvs-fileinfo-pp): Insert trailing newline.
-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 @@
+2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
+
+ * emacs-lisp/ewoc.el (ewoc--adjust): New func.
+ (ewoc--insert-new-node): Don't insert trailing newline.
+ Instead, adjust succesor nodes' start markers.
+ (ewoc--refresh-node): Delete all text from current node's start
+ marker to the next one's; adjust successor nodes' start markers.
+ (ewoc--create): Doc fixes.
+ (ewoc--refresh): Don't insert newline.
+ (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
+ * pcvs.el (cvs-make-cvs-buffer): Specify
+ extra newline for ewoc's header and footer.
+ (cvs-update-header): Update initial header recognition.
+ Append newline to final header and footer values.
+ * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
+
2006-05-17 Richard Stallman <rms@gnu.org>
* 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."
;; or nothing
"")))
(format "%-11s %s %-11s %-11s %s"
- side status type base file)))))))
+ side status type base file))))
+ "\n")))
(defun cvs-fileinfo-update (fi fi-new)