annotate lib-src/gzip-el.sh @ 781:eba92770173a
[xemacs-hg @ 2002-03-18 10:13:39 by ben]
stragglers:
config.inc.samp, xemacs.mak: Deal with never-ending perl quoting problems.
README: Include a long, long description of the suggested directory layout
for developing XEmacs. This should probably go as part of a
larger document, a "Getting Started with Developing XEmacs". ####
Does such a document exist?
etc\unicode\mule-ucs\*: New directory, containing translation
files for the remaining charsets that are not in
unicode\unicode-consortium but are in mule-ucs.
etc\unicode\other\*: New directory, containing translation
files made up on an ad-hoc basis.
etc\unicode\README: Update.
* Some ChangeLog entries from stuff that got applied long ago
never got checked in, due to the nasty SCCS "oops, i forgot again
..." bug.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan.
Load new file mule-msw-init-late.
unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages
extracted from mule-ucs.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan.
Load new file mule-msw-init-late.
unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages
extracted from mule-ucs.
mule\lao.el: Convert stuff to XEmacs-style.
mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle
encountering characters of a charset before the charset is defined.
mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el.
mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el,
which references charsets and thus needs to be delayed until after
all charsets have been created.
mule\mule-msw-init-late.el: New file, some stuff from
mule-msw-init.el.
fns.c, lread.c: Add variable require-prints-loading-message to cause loading
messages to get printed when a file is loading during a "require",
which normally doesnt happen. This can be set using env var
XEMACSDEBUG to debug problems with non-interactive compilation.
Modify load-internal so it prints "Requiring: ..." instead of
"Loading: ..." when appropriate.
author |
ben |
date |
Mon, 18 Mar 2002 10:13:39 +0000 |
parents |
3ecd8885ac67 |
children |
308d34e9f07d |
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.
|
|
12
|
|
13 # XEmacs is free software; you can redistribute it and/or modify it
|
|
14 # under the terms of the GNU General Public License as published by
|
|
15 # the Free Software Foundation; either version 2, or (at your option)
|
|
16 # any later version.
|
|
17
|
|
18 # XEmacs is distributed in the hope that it will be useful, but
|
|
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
21 # General Public License for more details.
|
|
22
|
|
23 # You should have received a copy of the GNU General Public License
|
|
24 # along with XEmacs; see the file COPYING. If not, write to
|
|
25 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
26 # Boston, MA 02111-1307, USA.
|
|
27
|
|
28 #
|
|
29 #
|
|
30 echo Compressing .el files in "$1"...
|
|
31
|
|
32 find "$1" -type f -name "*.el" -print |
|
|
33 while read file; do
|
|
34 [ -s "${file}c" ] && echo "$file" && gzip -f9 "$file"
|
|
35 done
|
|
36
|
|
37 echo Compressing .el files in "$1"...done.
|