unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* nnml.el and nnfolder.el
@ 2004-11-14 21:30 Luc Teirlinck
  2004-11-14 22:36 ` Reiner Steib
  0 siblings, 1 reply; 4+ messages in thread
From: Luc Teirlinck @ 2004-11-14 21:30 UTC (permalink / raw)
  Cc: Simon Josefsson

I believe that the following two compiler warnings in the `make
bootstrap' output seem real:

    In nnfolder-save-marks: nnfolder.el:1243:19:Warning: `error' called
    with 1 args to fill 2 format field(s)

and:

    nnml.el:987:19:Warning: `error' called with 1 args to fill 2
    format field(s)

They probably resulted from typos.  I know nothing about those two
files and do not remember what procedure to follow for bug fixes to
Gnus, but I would guess that the following were really intended:

===File ~/nnfolder-diff=====================================
*** nnfolder.el	29 Sep 2004 07:46:22 -0500	1.18
--- nnfolder.el	14 Nov 2004 14:51:13 -0600	
***************
*** 1240,1246 ****
  			nnfolder-marks-modtime))
        (error (or (gnus-yes-or-no-p
  		  (format "Could not write to %s (%s).  Continue? " file err))
! 		 (error "Cannot write to %s (%s)" err))))))
  
  (defun nnfolder-open-marks (group server)
    (let ((file (nnfolder-group-marks-pathname group)))
--- 1240,1246 ----
  			nnfolder-marks-modtime))
        (error (or (gnus-yes-or-no-p
  		  (format "Could not write to %s (%s).  Continue? " file err))
! 		 (error "Cannot write to %s (%s)" file err))))))
  
  (defun nnfolder-open-marks (group server)
    (let ((file (nnfolder-group-marks-pathname group)))
============================================================

===File ~/nnml-diff=========================================
*** nnml.el	29 Sep 2004 07:46:22 -0500	1.13
--- nnml.el	14 Nov 2004 15:02:39 -0600	
***************
*** 984,990 ****
  			nnml-marks-modtime))
        (error (or (gnus-yes-or-no-p
  		  (format "Could not write to %s (%s).  Continue? " file err))
! 		 (error "Cannot write to %s (%s)" err))))))
  
  (defun nnml-open-marks (group server)
    (let ((file (expand-file-name
--- 984,990 ----
  			nnml-marks-modtime))
        (error (or (gnus-yes-or-no-p
  		  (format "Could not write to %s (%s).  Continue? " file err))
! 		 (error "Cannot write to %s (%s)" file err))))))
  
  (defun nnml-open-marks (group server)
    (let ((file (expand-file-name
============================================================

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

* Re: nnml.el and nnfolder.el
  2004-11-14 21:30 nnml.el and nnfolder.el Luc Teirlinck
@ 2004-11-14 22:36 ` Reiner Steib
  2004-11-14 23:25   ` Luc Teirlinck
  2004-11-14 23:31   ` Miles Bader
  0 siblings, 2 replies; 4+ messages in thread
From: Reiner Steib @ 2004-11-14 22:36 UTC (permalink / raw)
  Cc: Simon Josefsson, emacs-devel

On Sun, Nov 14 2004, Luc Teirlinck wrote:

> I believe that the following two compiler warnings in the `make
> bootstrap' output seem real:
>
>     In nnfolder-save-marks: nnfolder.el:1243:19:Warning: `error' called
>     with 1 args to fill 2 format field(s)
>
> and:
>
>     nnml.el:987:19:Warning: `error' called with 1 args to fill 2
>     format field(s)
>
> They probably resulted from typos.  I know nothing about those two
> files and do not remember what procedure to follow for bug fixes to
> Gnus, 

You can apply bug fixes to Gnus in Emacs trunk.  Miles will sync the
changes to Gnus trunk and the stable branch (v5-10) within a couple of
days.

> but I would guess that the following were really intended:
[...]

The patch is correct, I think.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/

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

* Re: nnml.el and nnfolder.el
  2004-11-14 22:36 ` Reiner Steib
@ 2004-11-14 23:25   ` Luc Teirlinck
  2004-11-14 23:31   ` Miles Bader
  1 sibling, 0 replies; 4+ messages in thread
From: Luc Teirlinck @ 2004-11-14 23:25 UTC (permalink / raw)
  Cc: simon, emacs-devel

Reiner Steib wrote:

   The patch is correct, I think.

Thanks.  I have installed it in Emacs CVS.

Sincerely,

Luc.

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

* Re: nnml.el and nnfolder.el
  2004-11-14 22:36 ` Reiner Steib
  2004-11-14 23:25   ` Luc Teirlinck
@ 2004-11-14 23:31   ` Miles Bader
  1 sibling, 0 replies; 4+ messages in thread
From: Miles Bader @ 2004-11-14 23:31 UTC (permalink / raw)


On Sun, Nov 14, 2004 at 11:36:39PM +0100, Reiner Steib wrote:
> > They probably resulted from typos.  I know nothing about those two
> > files and do not remember what procedure to follow for bug fixes to
> > Gnus, 
> 
> You can apply bug fixes to Gnus in Emacs trunk.

I'm presuming that Luc was referring to getting confirmation about changes to
unfamiliar code.

I'd guess it's enough to post here (emacs-devel), since several Gnus
maintainers read this list (at least Reiner).

-Miles
-- 
P.S.  All information contained in the above letter is false,
      for reasons of military security.

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

end of thread, other threads:[~2004-11-14 23:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-14 21:30 nnml.el and nnfolder.el Luc Teirlinck
2004-11-14 22:36 ` Reiner Steib
2004-11-14 23:25   ` Luc Teirlinck
2004-11-14 23:31   ` Miles Bader

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).