diff options
| author | Xue Fuqiao | 2014-01-02 16:47:40 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2014-01-02 16:47:40 +0800 |
| commit | 5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2 (patch) | |
| tree | 6a0a6f7ba9013b039f9f5ff92f50fd4520081ec3 /admin | |
| parent | b483c5703d31a7931c701817fc6dcb61259abb82 (diff) | |
| download | emacs-5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2.tar.gz emacs-5cd63720ce8b6da6fa722ec18c2c4087a6a0afd2.zip | |
* admin/check-doc-strings: Replace `perl -w' with `use warnings;'.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rw-r--r-- | admin/admin.el | 1 | ||||
| -rwxr-xr-x | admin/check-doc-strings | 3 |
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 @@ | |||
| 1 | 2014-01-02 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * check-doc-strings: Replace `perl -w' with `use warnings;'. | ||
| 4 | |||
| 1 | 2013-12-30 Glenn Morris <rgm@gnu.org> | 5 | 2013-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. |
| 223 | ROOT should be the root of an Emacs source tree. | 224 | ROOT 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 -*- |
| 2 | eval 'exec perl -w -S $0 ${1+"$@"}' # Portability kludge | 2 | eval '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 | ||
| 8 | use strict; | 8 | use strict; |
| 9 | use warnings; | ||
| 9 | use POSIX; | 10 | use POSIX; |
| 10 | 11 | ||
| 11 | (my $myName = $0) =~ s@.*/@@; my $usage=" | 12 | (my $myName = $0) =~ s@.*/@@; my $usage=" |