From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24933 Path: main.gmane.org!not-for-mail From: renehl@post1.tele.dk (Rene H. Larsen) Newsgroups: gmane.emacs.gnus.general Subject: Re: [OT] Line wrapping Date: 28 Aug 1999 12:51:22 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <87yaew9o0l.fsf@renehl.ournet.dk> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035162412 11405 80.91.224.250 (21 Oct 2002 01:06:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:06:52 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA01701 for ; Sat, 28 Aug 1999 06:56:13 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.3/8.9.3) with ESMTP id FAB01372; Sat, 28 Aug 1999 05:55:55 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 28 Aug 1999 05:56:12 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id FAA20577 for ; Sat, 28 Aug 1999 05:56:01 -0500 (CDT) Original-Received: from aix1.inet.tele.dk (aix1.inet.tele.dk [193.162.146.9]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA01691 for ; Sat, 28 Aug 1999 06:55:14 -0400 (EDT) Original-Received: from izzlazz.ournet.dk (ip216.ronnxr1.ras.tele.dk [195.249.54.216]) by aix1.inet.tele.dk (8.9.2/8.9.2) with ESMTP id MAA13334 for ; Sat, 28 Aug 1999 12:55:11 +0200 Original-Received: from renehl.ournet.dk [192.168.0.1] (mail) by izzlazz.ournet.dk with esmtp (Exim 2.11 #1 (Debian)) id 11Kg4x-0001MI-00; Sat, 28 Aug 1999 12:51:23 +0200 Original-Received: from renehl by renehl.ournet.dk with local (Exim 3.03 #1 (Debian)) id 11Kg4w-00039C-00; Sat, 28 Aug 1999 12:51:22 +0200 Original-To: ding@gnus.org In-Reply-To: Lars Magne Ingebrigtsen's message of "28 Aug 1999 00:02:58 +0200" Original-Lines: 21 User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) XEmacs/20.4 (Emerald) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24933 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24933 Lars Magne Ingebrigtsen writes: > Lee Willis writes: > > > I was under the impression that is was common convention (Maybe even > > RFC?) that you wrap lines at around 72 characters. Anyone any pointers > > to where this is stated/implied/whatevered ... > > I can't recall any RFC stating such (except for headers), but it's, > uhm, a common convention. :-) RFC 1855 ("Netiquette Guidelines") specifies that you should - Limit line length to fewer than 65 characters and end a line with a carriage return. but the 72 character limit seems to be a more common convention. -- #!/usr/bin/perl -w for$a(0..12){$b[$a]="|"." "x78}for$a(0..78){substr($b[-(sin($a*3.1415/ 22)-1)*6.499],$a,1)="*"}$b[6]=~s/ /-/g;print join("\n",@b),"\n";