Gnus development mailing list
 help / color / mirror / Atom feed
* [patch] 1 of 1 clarify role of .newsrc
@ 2011-07-04  2:08 Dave Abrahams
  2011-07-05 20:28 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Abrahams @ 2011-07-04  2:08 UTC (permalink / raw)
  To: ding

[-- Attachment #1: Type: text/plain, Size: 113 bytes --]


Tried to send this with git-format-patch, but couldn't tell if it
worked; sorry if it shows up as a duplicate.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Clarify-the-role-of-the-.newsrc-file.patch --]
[-- Type: text/x-patch, Size: 3968 bytes --]

From cc3fe82ccf83fe0bd65f1cd23076073769e9d442 Mon Sep 17 00:00:00 2001
From: Dave Abrahams <dave@boostpro.com>
Date: Sun, 3 Jul 2011 21:55:18 -0400
Subject: [PATCH] Clarify the role of the .newsrc file
To: ding@gnus.org

Not saving/loading it doesn't make it impossible to use other
newsreaders, it merely means they will not be synchronized with Gnus.
---
 lisp/gnus-start.el |   14 ++++++++------
 texi/gnus.texi     |   18 ++++++++++--------
 2 files changed, 18 insertions(+), 14 deletions(-)

diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el
index aa9af01..91ca54f 100644
--- a/lisp/gnus-start.el
+++ b/lisp/gnus-start.el
@@ -218,9 +218,10 @@ groups."
   "*Non-nil means that Gnus will read the `.newsrc' file.
 Gnus always reads its own startup file, which is called
 \".newsrc.eld\".  The file called \".newsrc\" is in a format that can
-be readily understood by other newsreaders.  If you don't plan on
-using other newsreaders, set this variable to nil to save some time on
-entry."
+be readily understood by other newsreaders.  If you don't
+care whether Gnus can stay in synch with changes made in other
+newsreaders (e.g. to group subscriptions and article marks), set
+this variable to nil to save some time on entry."
   :version "21.1"
   :group 'gnus-newsrc
   :type 'boolean)
@@ -229,9 +230,10 @@ entry."
   "*Non-nil means that Gnus will save the `.newsrc' file.
 Gnus always saves its own startup file, which is called
 \".newsrc.eld\".  The file called \".newsrc\" is in a format that can
-be readily understood by other newsreaders.  If you don't plan on
-using other newsreaders, set this variable to nil to save some time on
-exit."
+be readily understood by other newsreaders.  If you don't
+care whether other newsreaders can stay in synch with changes
+made in Gnus (e.g. to group subscriptions and article marks), set
+this variable to nil to save some time on exit."
   :group 'gnus-newsrc
   :type 'boolean)
 
diff --git a/texi/gnus.texi b/texi/gnus.texi
index f500a2e..7c1feca 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
@@ -1405,8 +1405,10 @@ not stored in the @file{.newsrc} file.
 You can turn off writing the @file{.newsrc} file by setting
 @code{gnus-save-newsrc-file} to @code{nil}, which means you can delete
 the file and save some space, as well as exiting from Gnus faster.
-However, this will make it impossible to use other newsreaders than
-Gnus.  But hey, who would want to, right?  Similarly, setting
+However, Gnus and other newsreaders will not maintain a synchronized
+idea of which groups you're subscribed to or articles you've read.
+But hey, who would want to use another newsreader, right?
+Similarly, setting
 @code{gnus-read-newsrc-file} to @code{nil} makes Gnus ignore the
 @file{.newsrc} file and any @file{.newsrc-SERVER} files, which can be
 convenient if you use a different news reader occasionally, and you
@@ -28875,15 +28877,15 @@ sizes a bit if you are running out of space.
 
 @item gnus-save-newsrc-file
 If this is @code{nil}, Gnus will never save @file{.newsrc}---it will
-only save @file{.newsrc.eld}.  This means that you will not be able to
-use any other newsreaders than Gnus.  This variable is @code{t} by
-default.
+only save @file{.newsrc.eld}.  Other newsreaders will have no way to
+stay in synch with changes made in Gnus (e.g. to group subscriptions and
+article marks).  This variable is @code{t} by default.
 
 @item gnus-read-newsrc-file
 If this is @code{nil}, Gnus will never read @file{.newsrc}---it will
-only read @file{.newsrc.eld}.  This means that you will not be able to
-use any other newsreaders than Gnus.  This variable is @code{t} by
-default.
+only read @file{.newsrc.eld}.  Gnus will have no way to stay in synch
+with changes made in other newsreaders (e.g. to group subscriptions and
+article marks).  This variable is @code{t} by default.
 
 @item gnus-save-killed-list
 If this is @code{nil}, Gnus will not save the list of dead groups.  You
-- 
1.7.3.4


[-- Attachment #3: Type: text/plain, Size: 63 bytes --]


-- 
Dave Abrahams
BoostPro Computing
http://www.boostpro.com


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] 1 of 1 clarify role of .newsrc
  2011-07-04  2:08 [patch] 1 of 1 clarify role of .newsrc Dave Abrahams
@ 2011-07-05 20:28 ` Lars Magne Ingebrigtsen
  2011-07-06  2:29   ` Dave Abrahams
  0 siblings, 1 reply; 3+ messages in thread
From: Lars Magne Ingebrigtsen @ 2011-07-05 20:28 UTC (permalink / raw)
  To: Dave Abrahams; +Cc: ding

Dave Abrahams <dave@boostpro.com> writes:

> Tried to send this with git-format-patch, but couldn't tell if it
> worked; sorry if it shows up as a duplicate.

Looks good.  I forget -- did we find out whether you had copyright
assignments one file with the FSF or not?

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] 1 of 1 clarify role of .newsrc
  2011-07-05 20:28 ` Lars Magne Ingebrigtsen
@ 2011-07-06  2:29   ` Dave Abrahams
  0 siblings, 0 replies; 3+ messages in thread
From: Dave Abrahams @ 2011-07-06  2:29 UTC (permalink / raw)
  To: Lars Magne Ingebrigtsen; +Cc: ding


on Tue Jul 05 2011, Lars Magne Ingebrigtsen <larsi-AT-gnus.org> wrote:

> Dave Abrahams <dave@boostpro.com> writes:
>
>> Tried to send this with git-format-patch, but couldn't tell if it
>> worked; sorry if it shows up as a duplicate.
>
> Looks good.  I forget -- did we find out whether you had copyright
> assignments one file with the FSF or not?

You asked, but if there was an answer, I didn't see/hear it.

-- 
Dave Abrahams
BoostPro Computing
http://www.boostpro.com



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-07-06  2:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-04  2:08 [patch] 1 of 1 clarify role of .newsrc Dave Abrahams
2011-07-05 20:28 ` Lars Magne Ingebrigtsen
2011-07-06  2:29   ` Dave Abrahams

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).