Mercurial > hg > xemacs-beta
annotate lib-src/fix-perms.sh @ 5855:0bddb59072b6
Look for cased character classes when deciding on case-fold-search, #'isearch
lisp/ChangeLog addition:
2015-03-11 Aidan Kehoe <kehoea@parhasard.net>
* isearch-mode.el:
* isearch-mode.el (isearch-fix-case):
Use the new #'no-case-regexp-p function if treating ISEARCH-STRING
as a regular expression; otherwise, use the [[:upper:]] character
class.
* isearch-mode.el (isearch-no-upper-case-p): Removed.
* isearch-mode.el (with-caps-disable-folding): Removed.
These two haven't been used since 1998.
* occur.el (occur-1):
Use #'no-case-regexp-p here.
* replace.el (perform-replace):
Don't use #'no-upper-case-p, use #'no-case-regexp-p or
(string-match "[[:upper:]]" ...) as appropriate.
* simple.el:
* simple.el (no-upper-case-p): Removed. This did two different
things, and its secondary function (examining regular expressions)
just became much more complicated; move the regular expression
functionality to its own function, use character classes when
examining non-regular-expressions instead.
The code to look for character classes, and the design decision
that this should be done, are from GNU, thank you Stefan Monnier.
* simple.el (no-case-regexp-p): New.
Given a REGEXP, return non-nil if it has nothing to suggest an
interactive user wants a case-sensitive search.
* simple.el (with-search-caps-disable-folding):
* simple.el (with-interactive-search-caps-disable-folding):
Update both these macros to use #'no-case-regexp-p.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 11 Mar 2015 18:06:15 +0000 |
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 |