Deleted Added
full compact
cmd1.c (99112) cmd1.c (173439)
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 23 unchanged lines hidden (view full) ---

32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)cmd1.c 8.2 (Berkeley) 4/20/95";
37#endif
38#endif /* not lint */
39#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 23 unchanged lines hidden (view full) ---

32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)cmd1.c 8.2 (Berkeley) 4/20/95";
37#endif
38#endif /* not lint */
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/usr.bin/mail/cmd1.c 99112 2002-06-30 05:25:07Z obrien $");
40__FBSDID("$FreeBSD: head/usr.bin/mail/cmd1.c 173439 2007-11-08 11:13:03Z dds $");
41
42#include "rcv.h"
43#include "extern.h"
44
45/*
46 * Mail -- a mail program
47 *
48 * User commands.

--- 239 unchanged lines hidden (view full) ---

288{
289
290 return (type1(msgvec, 0, 0));
291}
292
293/*
294 * Type out the messages requested.
295 */
41
42#include "rcv.h"
43#include "extern.h"
44
45/*
46 * Mail -- a mail program
47 *
48 * User commands.

--- 239 unchanged lines hidden (view full) ---

288{
289
290 return (type1(msgvec, 0, 0));
291}
292
293/*
294 * Type out the messages requested.
295 */
296jmp_buf pipestop;
296static jmp_buf pipestop;
297int
298type1(msgvec, doign, page)
299 int *msgvec;
300 int doign, page;
301{
302 int nlines, *ip;
303 struct message *mp;
304 char *cp;

--- 181 unchanged lines hidden ---
297int
298type1(msgvec, doign, page)
299 int *msgvec;
300 int doign, page;
301{
302 int nlines, *ip;
303 struct message *mp;
304 char *cp;

--- 181 unchanged lines hidden ---