Mercurial > hg > xemacs-beta
annotate lib-src/fix-perms.sh @ 5566:4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
lisp/ChangeLog addition:
2011-09-07 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el:
* bytecomp.el (for-effect): Move this earlier in the file, it's
referenced in byte-compile-initial-macro-environment.
* bytecomp.el (byte-compile-initial-macro-environment):
In the byte-compile-macro-environment definition for #'labels, put
off the compiling the lambda bodies until the point where the rest
of the form is being compiled, allowing the lambda bodies to
access appropriate values for byte-compile-bound-variables, and
reducing excessive warning about free variables.
Add a byte-compile-macro-environment definition for #'flet. This
modifies byte-compile-function-environment appropriately, and
warns about bindings of functions that have macro definitions in
the current environment, about functions that have byte codes, and
about functions that have byte-compile methods (which may not do
what the user wants at runtime).
* bytecomp.el (byte-compile-funcall):
If FUNCTION is constant, call #'byte-compile-callargs-warn if
that's appropriate, giving warnings about problems with calling
functions bound with #'labels.
* cl-macs.el:
* cl-macs.el (flet):
Mention the main difference from Common Lisp, that the bindings
are dynamic, not lexical. Counsel the use of #'labels, not #'flet,
for this and other reasons. Explain the limited single use case for
#'flet. Cross-reference to bytecomp.el in a comment.
* cl-macs.el (labels):
Go into detail on which functions may be called from
where. Explain how to access the function definition of a label
within FORM. Add a comment cross-referencing to bytecomp.el.
man/ChangeLog addition:
2011-09-07 Aidan Kehoe <kehoea@parhasard.net>
* cl.texi (Function Bindings):
Move #'labels first, describe it in more detail, explaining that
it is to be preferred over #'flet, and explaining why.
Explain that dynamic bindings with #'flet will also not work when
functions are accessed through their bytecodes.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 07 Sep 2011 16:26:45 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
4947
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
1 #!/bin/sh |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
2 ### fix-perms.sh --- Correct the permissions on XEmacs source/build files |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
3 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
4 # Copyright (C) 2010 Ben Wing. |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
5 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
6 # Author: Ben Wing |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
7 # Keywords: internal |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
8 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
9 # This file is part of XEmacs. |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4947
diff
changeset
|
10 # |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4947
diff
changeset
|
11 # 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:
4947
diff
changeset
|
12 # 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:
4947
diff
changeset
|
13 # 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:
4947
diff
changeset
|
14 # option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4947
diff
changeset
|
15 # |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4947
diff
changeset
|
16 # 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:
4947
diff
changeset
|
17 # 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:
4947
diff
changeset
|
18 # 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:
4947
diff
changeset
|
19 # for more details. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4947
diff
changeset
|
20 # |
4947
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
21 # 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:
4947
diff
changeset
|
22 # along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
4947
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
23 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
24 ### Commentary: |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
25 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
26 # This program sets the executable bit on all scripts and executable files |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
27 # in the XEmacs source tree, including those that are built. |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
28 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
29 ### Code: |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
30 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
31 # List of executable source files in various directories (root, lib-src, etc) |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
32 # other than .sh files. Note that we are free to list files in |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
33 # subdirectories here rather than creating a separate item list" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
34 ROOT_EXES="configure config.guess install-sh move-if-change \ |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
35 modules/canna/configure" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
36 LIB_SRC_EXES="ad2c gnuattach gnudoit rcs2log vcdiff *.pl" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
37 ETC_EXES="" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
38 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
39 LIB_SRC_BUILT_EXES="`cd lib-src; ls -1 *.c | sed 's/\.c$//g'`" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
40 LIB_SRC_BUILT_EXES="minitar ctags $LIB_SRC_BUILT_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
41 SRC_BUILT_EXES="temacs xemacs" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
42 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
43 find . -type f -print0 | xargs -0 chmod a-x |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
44 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
45 for dir in . lib-src etc ; do |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
46 if [ "$dir" = "." ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
47 exes="$ROOT_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
48 elif [ "$dir" = "lib-src" ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
49 exes="$LIB_SRC_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
50 elif [ "$dir" = "etc" ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
51 exes="$ETC_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
52 else |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
53 echo "Error! Don't know how to handle directory '$dir'"; exit 2 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
54 fi |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
55 pwd=`pwd` |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
56 cd $dir |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
57 for x in $exes *.sh ; do |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
58 if [ ! -f $x ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
59 echo "Warning: file '$dir/$x' doesn't exist" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
60 else |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
61 chmod a+x $x |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
62 fi |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
63 done |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
64 cd "$pwd" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
65 done |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
66 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
67 # Now do the built executables. Don't warn or anything if we don't find |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
68 # anything, since they may not be built. |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
69 for dir in lib-src src ; do |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
70 if [ "$dir" = "src" ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
71 exes="$SRC_BUILT_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
72 elif [ "$dir" = "lib-src" ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
73 exes="$LIB_SRC_BUILT_EXES" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
74 else |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
75 echo "Error! Don't know how to handle directory '$dir'"; exit 2 |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
76 fi |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
77 pwd=`pwd` |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
78 cd $dir |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
79 for x in $exes *.exe ; do |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
80 if [ -f $x ]; then |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
81 chmod a+x $x |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
82 fi |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
83 done |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
84 cd "$pwd" |
4faad22a9fe5
Somehow fix-perms.sh didn't get committed
Ben Wing <ben@xemacs.org>
parents:
diff
changeset
|
85 done |