1*95c635efSGarrett D'Amore/* $Id: att.in,v 1.8 2011/07/31 17:30:33 schwarze Exp $ */ 2*95c635efSGarrett D'Amore/* 3*95c635efSGarrett D'Amore * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> 4*95c635efSGarrett D'Amore * 5*95c635efSGarrett D'Amore * Permission to use, copy, modify, and distribute this software for any 6*95c635efSGarrett D'Amore * purpose with or without fee is hereby granted, provided that the above 7*95c635efSGarrett D'Amore * copyright notice and this permission notice appear in all copies. 8*95c635efSGarrett D'Amore * 9*95c635efSGarrett D'Amore * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*95c635efSGarrett D'Amore * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*95c635efSGarrett D'Amore * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*95c635efSGarrett D'Amore * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*95c635efSGarrett D'Amore * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*95c635efSGarrett D'Amore * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*95c635efSGarrett D'Amore * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*95c635efSGarrett D'Amore */ 17*95c635efSGarrett D'Amore 18*95c635efSGarrett D'Amore/* 19*95c635efSGarrett D'Amore * This file defines the AT&T versions of the .At macro. This probably 20*95c635efSGarrett D'Amore * isn't going to change. The right-hand side is the formatted string. 21*95c635efSGarrett D'Amore * 22*95c635efSGarrett D'Amore * Be sure to escape strings. 23*95c635efSGarrett D'Amore * The non-breaking blanks prevent ending an output line right before 24*95c635efSGarrett D'Amore * a number. Groff prevent line breaks at the same places. 25*95c635efSGarrett D'Amore */ 26*95c635efSGarrett D'Amore 27*95c635efSGarrett D'AmoreLINE("v1", "Version\\~1 AT&T UNIX") 28*95c635efSGarrett D'AmoreLINE("v2", "Version\\~2 AT&T UNIX") 29*95c635efSGarrett D'AmoreLINE("v3", "Version\\~3 AT&T UNIX") 30*95c635efSGarrett D'AmoreLINE("v4", "Version\\~4 AT&T UNIX") 31*95c635efSGarrett D'AmoreLINE("v5", "Version\\~5 AT&T UNIX") 32*95c635efSGarrett D'AmoreLINE("v6", "Version\\~6 AT&T UNIX") 33*95c635efSGarrett D'AmoreLINE("v7", "Version\\~7 AT&T UNIX") 34*95c635efSGarrett D'AmoreLINE("32v", "Version\\~32V AT&T UNIX") 35*95c635efSGarrett D'AmoreLINE("III", "AT&T System\\~III UNIX") 36*95c635efSGarrett D'AmoreLINE("V", "AT&T System\\~V UNIX") 37*95c635efSGarrett D'AmoreLINE("V.1", "AT&T System\\~V Release\\~1 UNIX") 38*95c635efSGarrett D'AmoreLINE("V.2", "AT&T System\\~V Release\\~2 UNIX") 39*95c635efSGarrett D'AmoreLINE("V.3", "AT&T System\\~V Release\\~3 UNIX") 40*95c635efSGarrett D'AmoreLINE("V.4", "AT&T System\\~V Release\\~4 UNIX") 41