mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-22 10:26:20 +00:00
* admin/check-doc-strings: Replace perl -w' with
use warnings;'.
This commit is contained in:
parent
b483c5703d
commit
5cd63720ce
@ -1,3 +1,7 @@
|
||||
2014-01-02 Xue Fuqiao <xfq.free@gmail.com>
|
||||
|
||||
* check-doc-strings: Replace `perl -w' with `use warnings;'.
|
||||
|
||||
2013-12-30 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* admin.el (manual-html-fix-headers, manual-html-fix-index-1):
|
||||
|
@ -218,6 +218,7 @@ ROOT should be the root of an Emacs source tree."
|
||||
(buffer-substring start (point))))
|
||||
'("efaq-w32")))))
|
||||
|
||||
;; TODO report the progress
|
||||
(defun make-manuals (root &optional type)
|
||||
"Generate the web manuals for the Emacs webpage.
|
||||
ROOT should be the root of an Emacs source tree.
|
||||
|
@ -1,11 +1,12 @@
|
||||
: #-*- Perl -*-
|
||||
eval 'exec perl -w -S $0 ${1+"$@"}' # Portability kludge
|
||||
eval 'exec perl -S $0 ${1+"$@"}' # Portability kludge
|
||||
if 0;
|
||||
|
||||
# Author: Martin Buchholz
|
||||
# This program is in the public domain.
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use POSIX;
|
||||
|
||||
(my $myName = $0) =~ s@.*/@@; my $usage="
|
||||
|
Loading…
Reference in New Issue
Block a user