aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorXue Fuqiao2014-01-02 16:47:40 +0800
committerXue Fuqiao2014-01-02 16:47:40 +0800
commit5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2 (patch)
tree6a0a6f7ba9013b039f9f5ff92f50fd4520081ec3 /admin
parentb483c5703d31a7931c701817fc6dcb61259abb82 (diff)
downloademacs-5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2.tar.gz
emacs-5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2.zip
* admin/check-doc-strings: Replace `perl -w' with `use warnings;'.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog4
-rw-r--r--admin/admin.el1
-rwxr-xr-xadmin/check-doc-strings3
3 files changed, 7 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 55dd0bf6608..9f160e9604f 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12014-01-02 Xue Fuqiao <xfq.free@gmail.com>
2
3 * check-doc-strings: Replace `perl -w' with `use warnings;'.
4
12013-12-30 Glenn Morris <rgm@gnu.org> 52013-12-30 Glenn Morris <rgm@gnu.org>
2 6
3 * admin.el (manual-html-fix-headers, manual-html-fix-index-1): 7 * admin.el (manual-html-fix-headers, manual-html-fix-index-1):
diff --git a/admin/admin.el b/admin/admin.el
index 6e05a883c2b..58e5b0c830e 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -218,6 +218,7 @@ ROOT should be the root of an Emacs source tree."
218 (buffer-substring start (point)))) 218 (buffer-substring start (point))))
219 '("efaq-w32"))))) 219 '("efaq-w32")))))
220 220
221;; TODO report the progress
221(defun make-manuals (root &optional type) 222(defun make-manuals (root &optional type)
222 "Generate the web manuals for the Emacs webpage. 223 "Generate the web manuals for the Emacs webpage.
223ROOT should be the root of an Emacs source tree. 224ROOT should be the root of an Emacs source tree.
diff --git a/admin/check-doc-strings b/admin/check-doc-strings
index c69ff47ebfb..a0b5acb623f 100755
--- a/admin/check-doc-strings
+++ b/admin/check-doc-strings
@@ -1,11 +1,12 @@
1: #-*- Perl -*- 1: #-*- Perl -*-
2eval 'exec perl -w -S $0 ${1+"$@"}' # Portability kludge 2eval 'exec perl -S $0 ${1+"$@"}' # Portability kludge
3 if 0; 3 if 0;
4 4
5# Author: Martin Buchholz 5# Author: Martin Buchholz
6# This program is in the public domain. 6# This program is in the public domain.
7 7
8use strict; 8use strict;
9use warnings;
9use POSIX; 10use POSIX;
10 11
11(my $myName = $0) =~ s@.*/@@; my $usage=" 12(my $myName = $0) =~ s@.*/@@; my $usage="