GNU bug report logs - #22694
25.0.91; dired-mark-files-containing-regexp read file disk

Previous Next

Package: emacs;

Reported by: Tino Calancha <f92capac <at> gmail.com>

Date: Tue, 16 Feb 2016 12:45:02 UTC

Severity: wishlist

Found in version 25.0.91

Done: Tino Calancha <f92capac <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 22694 in the body.
You can then email your comments to 22694 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Tue, 16 Feb 2016 12:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Tino Calancha <f92capac <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Tue, 16 Feb 2016 12:45:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 25.0.91; dired-mark-files-containing-regexp read file disk
Date: Tue, 16 Feb 2016 21:47:28 +0900 (JST)
[Message part 1 (text/plain, inline)]
When a buffer visiting the file on disk exists, the matching is performed 
on this buffer: if the buffer is out of sync with the file, the
result may be wrong.

emacs -Q /tmp/foo --eval='(progn (with-current-buffer "foo" (insert "baz")) (save-buffer))'
C-x d RET
M-! printf baz >> bar; for f in foo bar; do printf qux >> $f ; done RET
g
% g \`bazqux$ RET
;; Just match bar.  It may signal an error if trying to read a non regular file.


*) Files satisfying predicate `file-regular-p'.
*) A buffer visiting the file on disk need to be updated before matching the input regexp.

In GNU Emacs 25.0.91.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.23)
Repository revision: b1a3ebedba88689d26f44cf7db338104b849ae99
[dired.patch (text/plain, attachment)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Tue, 16 Feb 2016 16:06:01 GMT) Full text and rfc822 format available.

Message #8 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Tino Calancha <f92capac <at> gmail.com>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91;
 dired-mark-files-containing-regexp read file disk
Date: Tue, 16 Feb 2016 18:05:39 +0200
> Date: Tue, 16 Feb 2016 21:47:28 +0900 (JST)
> From: Tino Calancha <f92capac <at> gmail.com>
> 
> When a buffer visiting the file on disk exists, the matching is performed 
> on this buffer: if the buffer is out of sync with the file, the
> result may be wrong.
> 
> emacs -Q /tmp/foo --eval='(progn (with-current-buffer "foo" (insert "baz")) (save-buffer))'
> C-x d RET
> M-! printf baz >> bar; for f in foo bar; do printf qux >> $f ; done RET
> g
> % g \`bazqux$ RET
> ;; Just match bar.  It may signal an error if trying to read a non regular file.
> 
> 
> *) Files satisfying predicate `file-regular-p'.
> *) A buffer visiting the file on disk need to be updated before matching the input regexp.

Isn't this by design?  Dired doesn't by default re-sync with the disk;
if you don't like this, you can turn on auto-revert in the Dired
buffer.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Wed, 17 Feb 2016 14:05:02 GMT) Full text and rfc822 format available.

Message #11 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Wed, 17 Feb 2016 23:07:16 +0900 (JST)
> Isn't this by design?  Dired doesn't by default re-sync with the disk;
> if you don't like this, you can turn on auto-revert in the Dired
> buffer.
I don't like reverting the buffer either.
I found better to ignore the buffers visiting and handle all files with
with-temp-buffer. Using grep is also nice, but it would change the type of 
regexp.

Regardless of whether auto-revert is enabled or not, the doc. string 
of this function says that it marks files whose contain match a regexp,
so, it should check the file instead of relying in the visiting 
buffer.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Wed, 24 Feb 2016 09:29:02 GMT) Full text and rfc822 format available.

Message #14 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: 22694 <at> debbugs.gnu.org
Cc: Tino Calancha <f92capac <at> gmail.com>
Subject: 25.0.91; dired-mark-files-containing-regexp read file disk
Date: Wed, 24 Feb 2016 18:31:53 +0900 (JST)
[Message part 1 (text/plain, inline)]
I think is better to not use the buffer and always read the file.
This way we always mark all the files containing the regexp,
regardless of the user customization.
[dired.patch (text/plain, attachment)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Sun, 10 Apr 2016 07:00:02 GMT) Full text and rfc822 format available.

Message #17 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: 22694 <at> debbugs.gnu.org
Subject: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file disk
Date: Sun, 10 Apr 2016 16:02:59 +0900 (JST)
Let me argue more about why i found more useful if we change the current 
behaviour:

Let's suppose the following case:

1) An user submit several hundred of jobs to a batch server.

2) The output consist of just log files (1 per job) which are written
   under the submission directory until the jobs succeded of fail.
   When the job fails, the logfile contains the word 'aborting'.

3) To resubmit the failed jobs, the user may put all logfiles together in a
   dired buffer using `find-name-dired'.  From time to time, he/she call
   `dired-mark-files-containing-regexp' using 'aborting' as regexp: from this,
   he/she obtain directly the list of failed jobs...

4) ...But if the user has opened some of the logfiles from failed jobs, the word
   'aborting' may not be in the buffer (the user need to revert it first), so the
   list of failed jobs at 3) will not be exhaustive.  This behaviour is not
   consistent with the doc. string of the function:

"Mark all files with contents containing REGEXP for use in later commands.
A prefix argument means to unmark them instead.
`.' and `..' are never marked."

 - As mentioned in 4) this function may not mark all files containing
   REGEXP and this is not obvious unless you read the source code.

 - Just from the doc. string i would expect this function behaves as in
   the patch within this thread.

 - Using the buffer when available seems like an optimization but
   in fact it's not because it may produce different results.

 I suggest in order of preference:

A) Apply the patch in this thread: then, the funcion behaves as described in the doc. string.

B) Modify the doc. string to account for the case when there are buffers visiting the files.





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Wed, 20 Apr 2016 14:56:01 GMT) Full text and rfc822 format available.

Message #20 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Tino Calancha <f92capac <at> gmail.com>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91;
 dired-mark-files-containing-regexp read file disk
Date: Wed, 20 Apr 2016 17:55:07 +0300
> Date: Sun, 10 Apr 2016 16:02:59 +0900 (JST)
> From: Tino Calancha <f92capac <at> gmail.com>
> 
> 1) An user submit several hundred of jobs to a batch server.
> 
> 2) The output consist of just log files (1 per job) which are written
>    under the submission directory until the jobs succeded of fail.
>    When the job fails, the logfile contains the word 'aborting'.
> 
> 3) To resubmit the failed jobs, the user may put all logfiles together in a
>    dired buffer using `find-name-dired'.  From time to time, he/she call
>    `dired-mark-files-containing-regexp' using 'aborting' as regexp: from this,
>    he/she obtain directly the list of failed jobs...
> 
> 4) ...But if the user has opened some of the logfiles from failed jobs, the word
>    'aborting' may not be in the buffer (the user need to revert it first), so the
>    list of failed jobs at 3) will not be exhaustive.  This behaviour is not
>    consistent with the doc. string of the function:

Making the doc string more explicit about this aspect is indeed a good
idea.  I've just did it on the emacs-25 branch.

As for your scenario: when you work with logfiles, or any other kind
of files that get updated regularly behind Emacs's back, you should
turn on auto-revert-mode or auto-revert-tail-mode in the buffers of
those files.  Then the buffer's contents will be synchronized with the
relevant files on disk, and the problem you describe would not exist.

Bottom line, I don't think I agree with permanently changing the
implementation along the lines you suggest, as that would be against
the general principles (AFAIK them) of Dired's design, and actually
also against the general principles of Emacs design vis-a-vis files
and buffers that visit them: we don't automatically sync a buffer with
the file it visits, and we don't automatically look on disk when the
file's buffer differs from what's on disk.

I guess we could have an option to switch to the behavior you would
like to see, but such an option, if we introduce it, IMO should not be
specific to this command, it should affect all the Dired commands
which might produce different results when buffers are not
auto-reverted.  Another alternative is to have an optional feature
that would ask whether to revert a buffer if Emacs finds that it was
changed on disk since last visited.

Thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Wed, 20 Apr 2016 15:29:02 GMT) Full text and rfc822 format available.

Message #23 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Tino Calancha <f92capac <at> gmail.com>, 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Thu, 21 Apr 2016 00:31:14 +0900 (JST)
Thank you very much for your response.

> Making the doc string more explicit about this aspect is indeed a good
> idea.  I've just did it on the emacs-25 branch.
Thanks.  The doc. string is very clear now.
Certainly the function name is very suggestive about what the function
should do, so may be people who will not read the doc and still suffer
the issue... (i know, they should read the doc.).

> As for your scenario: when you work with logfiles, or any other kind
> of files that get updated regularly behind Emacs's back, you should
> turn on auto-revert-mode or auto-revert-tail-mode in the buffers of
> those files.  Then the buffer's contents will be synchronized with the
> relevant files on disk, and the problem you describe would not exist.
Thank you for the advise.  Definitely i need to use one of these options.

> Bottom line, I don't think I agree with permanently changing the
> implementation along the lines you suggest, as that would be against
> the general principles (AFAIK them) of Dired's design, and actually
> also against the general principles of Emacs design vis-a-vis files
> and buffers that visit them: we don't automatically sync a buffer with
> the file it visits, and we don't automatically look on disk when the
> file's buffer differs from what's on disk.
I have no comment on this: i am not expert enough.

> I guess we could have an option to switch to the behavior you would
> like to see, but such an option, if we introduce it, IMO should not be
> specific to this command, it should affect all the Dired commands
> which might produce different results when buffers are not
> auto-reverted.
I like this way.  I may work on implement such option if you want.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Wed, 20 Apr 2016 15:49:02 GMT) Full text and rfc822 format available.

Message #26 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Tino Calancha <f92capac <at> gmail.com>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Wed, 20 Apr 2016 18:48:29 +0300
> Date: Thu, 21 Apr 2016 00:31:14 +0900 (JST)
> From: Tino Calancha <f92capac <at> gmail.com>
> cc: Tino Calancha <f92capac <at> gmail.com>, 22694 <at> debbugs.gnu.org
> 
> Thank you very much for your response.

Thanks for raising the issue and for perseverance.

> > I guess we could have an option to switch to the behavior you would
> > like to see, but such an option, if we introduce it, IMO should not be
> > specific to this command, it should affect all the Dired commands
> > which might produce different results when buffers are not
> > auto-reverted.
> I like this way.  I may work on implement such option if you want.

I suggest to wait for a couple of days in case someone objects to such
an option, and if no comments are posted, please go ahead and work on
it.

Thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Sun, 26 Jun 2016 15:33:01 GMT) Full text and rfc822 format available.

Message #29 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Tino Calancha <f92capac <at> gmail.com>, 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Mon, 27 Jun 2016 00:32:18 +0900 (JST)

On Wed, 20 Apr 2016, Eli Zaretskii wrote:

>I guess we could have an option to switch to the behavior you would
>like to see, but such an option, if we introduce it, IMO should not be
>specific to this command, it should affect all the Dired commands
>which might produce different results when buffers are not
>auto-reverted.

I have only found another Dired command which might require the new 
option:
`dired-do-query-replace-regexp'.
But it seems unnecessary because this command already alert the user
if the file has being modified 'externally':

./emacs -Q -eval '(progn (with-temp-file "/tmp/foo" (insert "foobar")) (find-file "/tmp/foo") (dired "/tmp"))'
% g \`foobar$ RET
M-! echo foo > foo
M-x dired-do-query-replace-regexp RET \`foobar$ RET bar RET
;; File foo changed on disk.  Reread from disk? (yes or no)

;;;
So i propose a patch which:
1) Adds a new option `dired-always-read-filesystem' (default value nil).
2) Use it just in `dired-mark-files-containing-regexp'.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

From e6449456c023e86511cd09dbcacefba471c5f1d5 Mon Sep 17 00:00:00 2001
From: Tino Calancha <tino.calancha <at> gmail.com>
Date: Mon, 27 Jun 2016 00:10:57 +0900
Subject: [PATCH] Dired always read file system

* dired.el (dired-always-read-filesystem): Add new option.
(dired-mark-files-containing-regexp): Use it (Bug#22694).
* doc/emacs/dired.texi: Mention it in the manual.
; * etc/NEWS: Add entry for this change.
---
 doc/emacs/dired.texi |  7 +++++--
 etc/NEWS             |  3 +++
 lisp/dired.el        | 14 ++++++++++++--
 3 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi
index 486e92a..763c1f5 100644
--- a/doc/emacs/dired.texi
+++ b/doc/emacs/dired.texi
@@ -550,13 +550,16 @@ Marks vs Flags
 the regular expression @var{regexp}
 (@code{dired-mark-files-containing-regexp}).  This command is like
 @kbd{% m}, except that it searches the file contents instead of the file
-name.  Note that if a file is visited in an Emacs buffer, this command
+name.  Note that if a file is visited in an Emacs buffer,
+and @code{dired-always-read-filesystem} evaluates @code{nil}, this 
command
 will look in the buffer without revisiting the file, so the results
 might be inconsistent with the file on disk if its contents has changed
 since it was last visited.  If you don't want this, you may wish
 reverting the files you have visited in your buffers, or turning on
 the @code{auto-revert} mode in those buffers, before invoking this
-command.  @xref{Reverting}.
+command.  @xref{Reverting}.  If you prefer that this command always 
revisit
+the file, without having to revert the file or enable @code{auto-revert}
+mode, you might want to set @code{dired-always-read-filesystem} to 
non-@code{nil}.

 @item C-/
 @itemx C-x u
diff --git a/etc/NEWS b/etc/NEWS
index b3a044d..6683199 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -198,6 +198,9 @@ questions, with a handy way to display help texts.
 ** Dired

 +++
+*** New option 'dired-always-read-filesystem'.
+
++++
 *** In wdired, when editing files to contain slash characters,
 the resulting directories are automatically created.  Whether to do
 this is controlled by the 'wdired-create-parent-directories' variable.
diff --git a/lisp/dired.el b/lisp/dired.el
index 38979b5..7eb6216 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -255,6 +255,15 @@ dired-hide-details-hide-information-lines
   :version "24.4"
   :group 'dired)

+(defcustom dired-always-read-filesystem nil
+  "Non-nil means commands like `dired-mark-files-containing-regexp' which
+may use a buffer visiting the file or read the file on disk, always
+read the file system.  Otherwise, if do exist a buffer visiting the file,
+then use that buffer."
+  :type 'boolean
+  :version "25.2"
+  :group 'dired)
+
 ;; Internal variables

 (defvar dired-marker-char ?*		; the answer is 42
@@ -3359,7 +3368,8 @@ dired-mark-files-containing-regexp
 A prefix argument means to unmark them instead.
 `.' and `..' are never marked.

-Note that if a file is visited in an Emacs buffer, this command will
+Note that if a file is visited in an Emacs buffer, and
+`dired-always-read-filesystem' evaluates nil, this command will
 look in the buffer without revisiting the file, so the results might
 be inconsistent with the file on disk if its contents has changed
 since it was last visited."
@@ -3379,7 +3389,7 @@ dired-mark-files-containing-regexp
 		(message "Checking %s" fn)
 		;; For now we do it inside emacs
 		;; Grep might be better if there are a lot of files
-		(if prebuf
+		(if (and prebuf (not dired-always-read-filesystem))
 		    (with-current-buffer prebuf
 		      (save-excursion
 			(goto-char (point-min))
-- 
2.8.1


In GNU Emacs 25.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 3.20.6)
Repository revision: 8419f0d166cf5107062ff74f120c591f3fce35d9





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Sat, 09 Jul 2016 11:09:01 GMT) Full text and rfc822 format available.

Message #32 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Tino Calancha <f92capac <at> gmail.com>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Sat, 09 Jul 2016 14:07:57 +0300
> From: Tino Calancha <f92capac <at> gmail.com>
> Date: Mon, 27 Jun 2016 00:32:18 +0900 (JST)
> cc: Tino Calancha <f92capac <at> gmail.com>, 22694 <at> debbugs.gnu.org
> 
> >I guess we could have an option to switch to the behavior you would
> >like to see, but such an option, if we introduce it, IMO should not be
> >specific to this command, it should affect all the Dired commands
> >which might produce different results when buffers are not
> >auto-reverted.
> 
> I have only found another Dired command which might require the new 
> option:
> `dired-do-query-replace-regexp'.
> But it seems unnecessary because this command already alert the user
> if the file has being modified 'externally':
> 
> ./emacs -Q -eval '(progn (with-temp-file "/tmp/foo" (insert "foobar")) (find-file "/tmp/foo") (dired "/tmp"))'
> % g \`foobar$ RET
> M-! echo foo > foo
> M-x dired-do-query-replace-regexp RET \`foobar$ RET bar RET
> ;; File foo changed on disk.  Reread from disk? (yes or no)
> 
> ;;;
> So i propose a patch which:
> 1) Adds a new option `dired-always-read-filesystem' (default value nil).
> 2) Use it just in `dired-mark-files-containing-regexp'.

Thanks, please push to master, after taking care of the following
issues:

> --- a/doc/emacs/dired.texi
> +++ b/doc/emacs/dired.texi
> @@ -550,13 +550,16 @@ Marks vs Flags
>   the regular expression @var{regexp}
>   (@code{dired-mark-files-containing-regexp}).  This command is like
>   @kbd{% m}, except that it searches the file contents instead of the file
> -name.  Note that if a file is visited in an Emacs buffer, this command
> +name.  Note that if a file is visited in an Emacs buffer,
> +and @code{dired-always-read-filesystem} evaluates @code{nil}, this 

Our usual style for what you want to say in the last sentence is like
this:

  Note that if a file is visited in an Emacs buffer, and
  @code{dired-always-read-filesystem} is @code{nil} (the default), ...

> --- a/etc/NEWS
> +++ b/etc/NEWS
> @@ -198,6 +198,9 @@ questions, with a handy way to display help texts.
>   ** Dired
> 
>   +++
> +*** New option 'dired-always-read-filesystem'.

Please tell in a sentence or 2 what does this option do.

> +(defcustom dired-always-read-filesystem nil
> +  "Non-nil means commands like `dired-mark-files-containing-regexp' which
> +may use a buffer visiting the file or read the file on disk, always
> +read the file system.  Otherwise, if do exist a buffer visiting the file,
> +then use that buffer."

The first line of the doc string must be a complete sentence.  So I
suggest the following alternative wording (which also clarifies the
text in other places):

   "Non-nil means revert buffers visiting files before searching them.
 By default,  commands like `dired-mark-files-containing-regexp' will
 search any buffers visiting the marked files without reverting them,
 even if they were changed on disk.  When this option is non-nil, such
 buffers are always reverted before searching them."

> +Note that if a file is visited in an Emacs buffer, and
> +`dired-always-read-filesystem' evaluates nil, this command will
                                  ^^^^^^^^^^^^^
"is nil"

Thanks.

How about a test for this functionality?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22694; Package emacs. (Mon, 11 Jul 2016 05:49:02 GMT) Full text and rfc822 format available.

Message #35 received at 22694 <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: 22694 <at> debbugs.gnu.org
Subject: Re: bug#22694: 25.0.91; dired-mark-files-containing-regexp read file
 disk
Date: Mon, 11 Jul 2016 14:48:43 +0900 (JST)

On Sat, 9 Jul 2016, Eli Zaretskii wrote:

> Thanks, please push to master, after taking care of the following
> issues:
Thank you very much for your help.
Addressed all the issues and pushed to master.

> How about a test for this functionality?
Good idea.  Added one test.




Reply sent to Tino Calancha <f92capac <at> gmail.com>:
You have taken responsibility. (Mon, 11 Jul 2016 05:50:01 GMT) Full text and rfc822 format available.

Notification sent to Tino Calancha <f92capac <at> gmail.com>:
bug acknowledged by developer. (Mon, 11 Jul 2016 05:50:01 GMT) Full text and rfc822 format available.

Message #40 received at 22694-done <at> debbugs.gnu.org (full text, mbox):

From: Tino Calancha <f92capac <at> gmail.com>
To: 22694-done <at> debbugs.gnu.org
Date: Mon, 11 Jul 2016 14:49:41 +0900 (JST)
Pushed to master branch




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 08 Aug 2016 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 269 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.