|
From: | Kevin Rodgers |
Subject: | Re: Incomplete output from "cvs annotate" |
Date: | Mon, 19 Jan 2004 14:42:28 -0700 |
User-agent: | Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2 |
Kim F. Storm wrote:
Knowing the cause, there is a simple work-arond in emacs, as the following call-process usage avoids having emacs tying stderr into stdout; instead, it redirects stderr to /dev/null: (call-process "/usr/bin/cvs" nil '(t nil) nil "annotate" "vc.el")
Discarding standard error is not a good idea. Too bad STDERR-FILE can't simply be a buffer (or a buffer name): (call-process "/usr/bin/cvs" nil '(t "*Messages*") nil "annotate" "vc.el") -- Kevin Rodgers
[Prev in Thread] | Current Thread | [Next in Thread] |