summaryrefslogtreecommitdiff
path: root/lisp/pcvs-parse.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-04-13 14:55:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-04-13 14:55:48 +0000
commit6be6d5797756e0d11ec71df50339c18fc90b4cc6 (patch)
tree5674c4b4d18afad766af130d8de65669269ddf3f /lisp/pcvs-parse.el
parent118562e17a52a8fd48cafa0fd2f58fe9a8032ca8 (diff)
downloademacs-6be6d5797756e0d11ec71df50339c18fc90b4cc6.tar.gz
(cvs-parse-run-table): Remove misleading text.
Diffstat (limited to 'lisp/pcvs-parse.el')
-rw-r--r--lisp/pcvs-parse.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el
index 036837c3bcb..9f732e0c9b9 100644
--- a/lisp/pcvs-parse.el
+++ b/lisp/pcvs-parse.el
@@ -4,7 +4,7 @@
;; Author: Stefan Monnier <monnier@cs.yale.edu>
;; Keywords: pcl-cvs
-;; Revision: $Id: pcvs-parse.el,v 1.5 2000/12/18 03:17:31 monnier Exp $
+;; Revision: $Id: pcvs-parse.el,v 1.6 2001/03/07 00:17:53 monnier Exp $
;; This file is part of GNU Emacs.
@@ -82,11 +82,11 @@ PARSE-SPEC is a function of no argument advancing the point and returning
either a fileinfo or t (if the matched text should be ignored) or
nil if it didn't match anything.
DONT-CHANGE-DISC just indicates whether the command was changing the disc
- or not (useful to tell the difference btween `cvs-examine' and `cvs-update'
- ouytput.
+ or not (useful to tell the difference between `cvs-examine' and `cvs-update'
+ output.
The path names should be interpreted as relative to SUBDIR (defaults
to the `default-directory').
-Return a list of collected entries, or t if an error occured."
+Return a list of collected entries, or t if an error occurred."
(goto-char (point-min))
(let ((fileinfos ())
(cvs-current-dir "")
@@ -159,7 +159,8 @@ Match RE and if successful, execute MATCHES."
(and
(cvs-match ".*$")
(cvs-create-fileinfo 'MESSAGE cvs-current-dir " "
- (concat " Unknown msg: '" (cvs-parse-msg) "'")
+ ;; (concat " Unknown msg: '"
+ (cvs-parse-msg) ;; "'")
:subtype 'ERROR)))))