From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/13845 Path: main.gmane.org!not-for-mail From: Hrvoje Niksic Newsgroups: gmane.emacs.gnus.general Subject: Re: Bad .newsrc.eld created by Gnus Date: 09 Feb 1998 09:18:06 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035153137 11462 80.91.224.250 (20 Oct 2002 22:32:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:32:17 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id AAA22666 for ; Mon, 9 Feb 1998 00:22:01 -0800 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by xemacs.org (8.8.5/8.8.5) with ESMTP id CAA23678 for ; Mon, 9 Feb 1998 02:19:01 -0600 (CST) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id CAN04494; Mon, 9 Feb 1998 02:55:17 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 09 Feb 1998 02:18:23 -0600 (CST) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id CAA18355 for ; Mon, 9 Feb 1998 02:18:14 -0600 (CST) Original-Received: (qmail 11217 invoked by uid 504); 9 Feb 1998 08:18:09 -0000 Original-Received: (qmail 11214 invoked from network); 9 Feb 1998 08:18:09 -0000 Original-Received: from jagor.srce.hr (hniksic@161.53.2.130) by claymore.vcinet.com with SMTP; 9 Feb 1998 08:18:08 -0000 Original-Received: (from hniksic@localhost) by jagor.srce.hr (8.8.8/8.8.8) id JAA28431; Mon, 9 Feb 1998 09:18:07 +0100 (MET) Original-To: ding@gnus.org X-Attribution: Hrvoje X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/xDi&N7XG KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&Ff%x_>1`T(+M2Gg/fgndU%k*ft [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J In-Reply-To: SL Baur's message of "08 Feb 1998 16:29:40 -0800" Original-Lines: 35 X-Mailer: Quassia Gnus v0.23/XEmacs 20.5(beta21) - "Golden Guernsey" Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:13845 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:13845 SL Baur writes: > Eze Ogwuma writes: > > > This is part of my file. It is the only part that contains "#". > > > > (#("nntp+news.dircon.co.uk:comp.lang.java.help" 0 23 nil 23 42 > ... > > (#("nntp+news.dircon.co.uk:comp.lang.java.programmer" 0 23 nil 23 48 > > Who put in the #'s? That's not valid Emacs or XEmacs. That looks like the FSFmacs crockish syntax for strings with text properties. Try this: (let ((a "somestring")) (put-text-property 0 5 'foo 'bar a) a) => "somestring" ; XEmacs => #("somestring" 0 5 (foo bar) 5 10 nil) ; FSFmacs Familiar? In FSF Emacs text properties change the printed representation of strings, and strings with properties might have leaked to `.newsrc.eld', somehow. This matter is even more confusing because given that Common Lisp uses #(...) syntax for vectors. -- Hrvoje Niksic | Student at FER Zagreb, Croatia --------------------------------+-------------------------------- * Vi is the God of editors. * Emacs is the editor of Gods.