aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2007-09-02 07:46:54 +0000
committerRomain Francoise2007-09-02 07:46:54 +0000
commitccf89694943e68a42f0e9d60e38551eaf9b21765 (patch)
treecd80de295629edc64bbe1a62e903bc40add2eb0d
parentc009fb6e7eb9fc64a11b44bd0197ebd6130c714c (diff)
downloademacs-ccf89694943e68a42f0e9d60e38551eaf9b21765.tar.gz
emacs-ccf89694943e68a42f0e9d60e38551eaf9b21765.zip
(log-view-current-file): Balance parens.
-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 156c966f958..51b087327e1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-09-02 Romain Francoise <romain@orebokech.com>
2
3 * log-view.el (log-view-current-file): Balance parens.
4
12007-09-02 Glenn Morris <rgm@gnu.org> 52007-09-02 Glenn Morris <rgm@gnu.org>
2 6
3 * comint.el (comint-mode): Don't set scroll-conservatively. 7 * 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.")
215 (forward-line 1) 215 (forward-line 1)
216 (or (re-search-backward log-view-file-re nil t) 216 (or (re-search-backward log-view-file-re nil t)
217 (re-search-forward log-view-file-re nil t) 217 (re-search-forward log-view-file-re nil t)
218 (error "Unable to determine the current file") 218 (error "Unable to determine the current file"))
219 (let* ((file (match-string 1)) 219 (let* ((file (match-string 1))
220 (cvsdir (and (re-search-backward log-view-dir-re nil t) 220 (cvsdir (and (re-search-backward log-view-dir-re nil t)
221 (match-string 1))) 221 (match-string 1)))