emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115800: Add the "use strict; " and "use warnings; "


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r115800: Add the "use strict; " and "use warnings; " pragmas.
Date: Sun, 29 Dec 2013 05:18:23 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115800
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sun 2013-12-29 13:18:15 +0800
message:
  Add the "use strict;" and "use warnings;" pragmas.
  
  * admin/make-emacs:
  * admin/build-configs: Add the "use strict;" and "use warnings;" pragmas.
modified:
  admin/ChangeLog                changelog-20091113204419-o5vbwnq5f7feedwu-2226
  admin/admin.el                 admin.el-20091113204419-o5vbwnq5f7feedwu-2254
  admin/build-configs            
buildconfigs-20091113204419-o5vbwnq5f7feedwu-2205
  admin/make-emacs               makeemacs-20091113204419-o5vbwnq5f7feedwu-2207
=== modified file 'admin/ChangeLog'
--- a/admin/ChangeLog   2013-12-28 08:33:44 +0000
+++ b/admin/ChangeLog   2013-12-29 05:18:15 +0000
@@ -1,3 +1,8 @@
+2013-12-29  Xue Fuqiao  <address@hidden>
+
+       * make-emacs:
+       * build-configs: Add the "use strict;" and "use warnings;" pragmas.
+
 2013-12-28  Glenn Morris  <address@hidden>
 
        * admin.el (cusver-scan): Warn about missing :types.

=== modified file 'admin/admin.el'
--- a/admin/admin.el    2013-12-28 08:33:44 +0000
+++ b/admin/admin.el    2013-12-29 05:18:15 +0000
@@ -69,6 +69,7 @@
     (user-error "Version not found in %s" file))
   (replace-match (format "%s" version) nil nil nil 1))
 
+;; TODO report the progress
 (defun set-version (root version)
   "Set Emacs version to VERSION in relevant files under ROOT.
 Root must be the root of an Emacs source tree."
@@ -161,6 +162,7 @@
 
 
 ;; Note this makes some assumptions about form of short copyright.
+;; TODO report the progress
 (defun set-copyright (root copyright)
   "Set Emacs short copyright to COPYRIGHT in relevant files under ROOT.
 Root must be the root of an Emacs source tree."

=== modified file 'admin/build-configs'
--- a/admin/build-configs       2013-01-01 09:11:05 +0000
+++ b/admin/build-configs       2013-12-29 05:18:15 +0000
@@ -20,6 +20,8 @@
 
 
 require 5;
+use strict;
+use warnings;
 use Getopt::Long;
 use File::Basename;
 use Cwd;

=== modified file 'admin/make-emacs'
--- a/admin/make-emacs  2013-01-01 09:11:05 +0000
+++ b/admin/make-emacs  2013-12-29 05:18:15 +0000
@@ -21,6 +21,8 @@
 
 
 require 5;
+use strict;
+use warnings;
 use Getopt::Long;
 use File::Basename;
 use Cwd;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]