+2003-09-18 Dave Love <fx@gnu.org>
+
+ * process.c (Fnetwork_interface_info): Fix type error.
+ (Fnetwork_interface_list): Doc fix.
+ (read_process_output, read_process_output): Delete unused var.
+
2003-09-17 Kim F. Storm <storm@cua.dk>
* process.c (Fnetwork_interface_list, Fnetwork_interface_info):
Lisp_Object process, option, value;
Lisp_Object no_error;
{
- int s, i;
+ int s;
CHECK_PROCESS (process);
doc: /* Return an alist of all network interfaces and their network address.
Each element is a cons, the car of which is a string containing the
interface name, and the cdr is the network address in internal
-format; see the description of ADDRESS in 'make-network-process'. */)
+format; see the description of ADDRESS in `make-network-process'. */)
()
{
struct ifconf ifconf;
any++;
for (n = 0; n < 6; n++)
p->contents[n] = make_number (((unsigned char *)&rq.ifr_hwaddr.sa_data[0])[n]);
- elt = Fcons (XINT (rq.ifr_hwaddr.sa_family), hwaddr);
+ elt = Fcons (make_number (rq.ifr_hwaddr.sa_family), hwaddr);
}
#endif
res = Fcons (elt, res);
Lisp_Object proc;
register int channel;
{
- register int nchars, nbytes;
+ register int nbytes;
char *chars;
register Lisp_Object outstream;
register struct buffer *old = current_buffer;