(log-edit-insert-cvs-rcstemplate): Ignore stderr.
This commit is contained in:
parent
992ea464ed
commit
2122713598
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
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.
|
||||
|
|
|
@ -448,8 +448,10 @@ This contacts the repository to get the rcstemplate file and
|
|||
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."
|
||||
|
|
Loading…
Add table
Reference in a new issue