comparison src/process.c @ 96361:a99299e4d2de

American English spelling fix.
author Glenn Morris <rgm@gnu.org>
date Fri, 27 Jun 2008 02:13:38 +0000
parents ddedcecb18ef
children 3bea8ede5bd0
comparison
equal deleted inserted replaced
96360:b4fbe199423a 96361:a99299e4d2de
3509 /* Make us close S if quit. */ 3509 /* Make us close S if quit. */
3510 record_unwind_protect (close_file_unwind, make_number (s)); 3510 record_unwind_protect (close_file_unwind, make_number (s));
3511 3511
3512 /* Parse network options in the arg list. 3512 /* Parse network options in the arg list.
3513 We simply ignore anything which isn't a known option (including other keywords). 3513 We simply ignore anything which isn't a known option (including other keywords).
3514 An error is signalled if setting a known option fails. */ 3514 An error is signaled if setting a known option fails. */
3515 for (optn = optbits = 0; optn < nargs-1; optn += 2) 3515 for (optn = optbits = 0; optn < nargs-1; optn += 2)
3516 optbits |= set_socket_option (s, args[optn], args[optn+1]); 3516 optbits |= set_socket_option (s, args[optn], args[optn+1]);
3517 3517
3518 if (is_server) 3518 if (is_server)
3519 { 3519 {