Mercurial > hg > xemacs-beta
annotate lib-src/gzip-el.sh @ 5661:6e5a7278f9bf
Add cast to Ibyte *, search.c, thank you Jeff Sparkes.
2012-05-07 Jeff Sparkes <jsparkes@gmail.com>
* search.c (skip_chars): Add cast to Ibyte *.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 08 May 2012 09:47:41 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
428 | 1 #! /bin/sh |
2 ### gzip-el.sh --- compress superfluous installed source lisp | |
3 | |
4 # Author: Jeff Miller <jmiller@smart.net> | |
5 # Author: Hrvoje Niksic <hniksic@xemacs.org> | |
6 # Maintainer: Steve Baur <steve@xemacs.org> | |
7 # Created: 13 Feb 1997 | |
8 # Version: 1.0 | |
9 # Keywords: internal | |
10 | |
11 # This file is part of XEmacs. | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
12 # |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
13 # XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
14 # under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
15 # Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
16 # option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
17 # |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
18 # XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
19 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
20 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
21 # for more details. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
22 # |
428 | 23 # You should have received a copy of the GNU General Public License |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
428
diff
changeset
|
24 # along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 25 |
26 # | |
27 # | |
28 echo Compressing .el files in "$1"... | |
29 | |
30 find "$1" -type f -name "*.el" -print | | |
31 while read file; do | |
32 [ -s "${file}c" ] && echo "$file" && gzip -f9 "$file" | |
33 done | |
34 | |
35 echo Compressing .el files in "$1"...done. |