From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: [jim@meyering.net: copyright.el vs. version "3"] Date: Tue, 10 Jul 2007 18:01:44 -0400 Message-ID: Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1184105047 19518 80.91.229.12 (10 Jul 2007 22:04:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 10 Jul 2007 22:04:07 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 11 00:04:06 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1I8NoS-0001NO-4F for ged-emacs-devel@m.gmane.org; Wed, 11 Jul 2007 00:04:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8NoQ-0006mr-UL for ged-emacs-devel@m.gmane.org; Tue, 10 Jul 2007 18:04:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8Nls-0005iL-WE for emacs-devel@gnu.org; Tue, 10 Jul 2007 18:01:25 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8Nlq-0005ga-RS for emacs-devel@gnu.org; Tue, 10 Jul 2007 18:01:23 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8Nlq-0005gG-EM for emacs-devel@gnu.org; Tue, 10 Jul 2007 18:01:22 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I8Nlp-0005gf-UA for emacs-devel@gnu.org; Tue, 10 Jul 2007 18:01:22 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1I8NmC-0000rx-0P; Tue, 10 Jul 2007 18:01:44 -0400 X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:74591 Archived-At: Would someone please install this in Emacs 22 and the trunk? It is a tiny change. ------- Start of forwarded message ------- X-Spam-Status: No, score=0.0 required=5.0 tests=SPF_PASS,UNPARSEABLE_RELAY autolearn=failed version=3.1.0 To: emacs-pretest-bug@gnu.org From: Jim Meyering Date: Tue, 10 Jul 2007 14:50:56 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: copyright.el vs. version "3" Now that I've switched coreutils to GPL V3, I find the default behavior (asking me if I want to downgrade to version 2) to be annoying -- and ironic. This is against emacs built from cvs (git, actually :-) today. Here's the patch I'm using: 2007-07-10 Jim Meyering GPL v3 is the latest: copyright.el should not prompt for a v3 comment * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3. * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment. diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 3f615dc..dcacc6a 100644 - --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -188,7 +188,7 @@ If this contains a %s, that will be replaced by the matching rule." \;; This file is free software; you can redistribute it and/or modify \;; it under the terms of the GNU General Public License as published by - -\;; the Free Software Foundation; either version 2, or (at your option) +\;; the Free Software Foundation; either version 3, or (at your option) \;; any later version. \;; This file is distributed in the hope that it will be useful, diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index ac61c5a..facdf9e 100644 - --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -79,7 +79,7 @@ When this is `function', only ask when called non-interactively." ;; when modifying this, also modify the comment generated by autoinsert.el - -(defconst copyright-current-gpl-version "2" +(defconst copyright-current-gpl-version "3" "String representing the current version of the GPL or nil.") (defvar copyright-update t) _______________________________________________ emacs-pretest-bug mailing list emacs-pretest-bug@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug ------- End of forwarded message -------