diff options
author | Romain Francoise <romain@orebokech.com> | 2007-09-02 07:46:54 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2007-09-02 07:46:54 +0000 |
commit | ccf89694943e68a42f0e9d60e38551eaf9b21765 (patch) | |
tree | cd80de295629edc64bbe1a62e903bc40add2eb0d /lisp/log-view.el | |
parent | c009fb6e7eb9fc64a11b44bd0197ebd6130c714c (diff) | |
download | emacs-ccf89694943e68a42f0e9d60e38551eaf9b21765.tar.gz |
(log-view-current-file): Balance parens.
Diffstat (limited to 'lisp/log-view.el')
-rw-r--r-- | lisp/log-view.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |