2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
+ * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
+
* emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
called-interactively-p.
(elp-profilable-p): Rename from elp-not-profilable-p.
can thus take some time."
(interactive)
(when (or (interactive-p) (= (point-min) (point-max)))
- (when (file-readable-p "CVS/Entries")
- (call-process "cvs" nil t nil "checkout" "-p" "CVSROOT/rcstemplate"))))
+ (when (file-readable-p "CVS/Root")
+ ;; Ignore the stderr stuff, even if it's an error.
+ (call-process "cvs" nil '(t nil) nil
+ "checkout" "-p" "CVSROOT/rcstemplate"))))
(defun log-edit-insert-filenames ()
"Insert the list of files that are to be committed."