summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/log-view.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 67e28312ba1..eb95e20852a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-02 Romain Francoise <romain@orebokech.com>
+
+ * log-view.el (log-view-current-file): Balance parens.
+
2007-09-02 Glenn Morris <rgm@gnu.org>
* comint.el (comint-mode): Don't set scroll-conservatively.
diff --git a/lisp/log-view.el b/lisp/log-view.el
index 2ca52443979..65a0dacd794 100644
--- a/lisp/log-view.el
+++ b/lisp/log-view.el
@@ -215,7 +215,7 @@ The match group number 1 should match the revision number itself.")
(forward-line 1)
(or (re-search-backward log-view-file-re nil t)
(re-search-forward log-view-file-re nil t)
- (error "Unable to determine the current file")
+ (error "Unable to determine the current file"))
(let* ((file (match-string 1))
(cvsdir (and (re-search-backward log-view-dir-re nil t)
(match-string 1)))