Japanese translation of message catalog for Sawfish Window-Manager
Revisão | 7b3614c61a10378056aaaaa936ea07da2782df0d (tree) |
---|---|
Hora | 2014-04-07 03:40:54 |
Autor | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
add ability to move tabs around
@@ -1,6 +1,10 @@ | ||
1 | 1 | 2014-04-06 Christopher Roy Bratusek <nano@tuxfamily.org> |
2 | 2 | * po/de.po: update german translation [fuchur] |
3 | 3 | |
4 | + * lisp/sawfish/wm/tabs/tabgroup.jl | |
5 | + * lisp/sawfish/wm/keymaps.jl: add ability to move tabs around | |
6 | + in the titlebar [fuchur] | |
7 | + | |
4 | 8 | 2014-01-24 Christopher Roy Bratusek <nano@tuxfamily.org> |
5 | 9 | * po/de.po: update german translation [fuchur] |
6 | 10 |
@@ -1,14 +1,12 @@ | ||
1 | 1 | #! /bin/sh |
2 | 2 | # Attempt to guess a canonical system name. |
3 | -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | |
4 | -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, | |
5 | -# 2011, 2012 Free Software Foundation, Inc. | |
3 | +# Copyright 1992-2013 Free Software Foundation, Inc. | |
6 | 4 | |
7 | -timestamp='2012-02-10' | |
5 | +timestamp='2013-06-10' | |
8 | 6 | |
9 | 7 | # This file is free software; you can redistribute it and/or modify it |
10 | 8 | # under the terms of the GNU General Public License as published by |
11 | -# the Free Software Foundation; either version 2 of the License, or | |
9 | +# the Free Software Foundation; either version 3 of the License, or | |
12 | 10 | # (at your option) any later version. |
13 | 11 | # |
14 | 12 | # This program is distributed in the hope that it will be useful, but |
@@ -22,19 +20,17 @@ timestamp='2012-02-10' | ||
22 | 20 | # As a special exception to the GNU General Public License, if you |
23 | 21 | # distribute this file as part of a program that contains a |
24 | 22 | # configuration script generated by Autoconf, you may include it under |
25 | -# the same distribution terms that you use for the rest of that program. | |
26 | - | |
27 | - | |
28 | -# Originally written by Per Bothner. Please send patches (context | |
29 | -# diff format) to <config-patches@gnu.org> and include a ChangeLog | |
30 | -# entry. | |
23 | +# the same distribution terms that you use for the rest of that | |
24 | +# program. This Exception is an additional permission under section 7 | |
25 | +# of the GNU General Public License, version 3 ("GPLv3"). | |
31 | 26 | # |
32 | -# This script attempts to guess a canonical system name similar to | |
33 | -# config.sub. If it succeeds, it prints the system name on stdout, and | |
34 | -# exits with 0. Otherwise, it exits with 1. | |
27 | +# Originally written by Per Bothner. | |
35 | 28 | # |
36 | 29 | # You can get the latest version of this script from: |
37 | 30 | # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD |
31 | +# | |
32 | +# Please send patches with a ChangeLog entry to config-patches@gnu.org. | |
33 | + | |
38 | 34 | |
39 | 35 | me=`echo "$0" | sed -e 's,.*/,,'` |
40 | 36 |
@@ -54,9 +50,7 @@ version="\ | ||
54 | 50 | GNU config.guess ($timestamp) |
55 | 51 | |
56 | 52 | Originally written by Per Bothner. |
57 | -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, | |
58 | -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 | |
59 | -Free Software Foundation, Inc. | |
53 | +Copyright 1992-2013 Free Software Foundation, Inc. | |
60 | 54 | |
61 | 55 | This is free software; see the source for copying conditions. There is NO |
62 | 56 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -138,6 +132,27 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown | ||
138 | 132 | UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown |
139 | 133 | UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown |
140 | 134 | |
135 | +case "${UNAME_SYSTEM}" in | |
136 | +Linux|GNU|GNU/*) | |
137 | + # If the system lacks a compiler, then just pick glibc. | |
138 | + # We could probably try harder. | |
139 | + LIBC=gnu | |
140 | + | |
141 | + eval $set_cc_for_build | |
142 | + cat <<-EOF > $dummy.c | |
143 | + #include <features.h> | |
144 | + #if defined(__UCLIBC__) | |
145 | + LIBC=uclibc | |
146 | + #elif defined(__dietlibc__) | |
147 | + LIBC=dietlibc | |
148 | + #else | |
149 | + LIBC=gnu | |
150 | + #endif | |
151 | + EOF | |
152 | + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` | |
153 | + ;; | |
154 | +esac | |
155 | + | |
141 | 156 | # Note: order is significant - the case branches are not exclusive. |
142 | 157 | |
143 | 158 | case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in |
@@ -200,6 +215,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | ||
200 | 215 | # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. |
201 | 216 | echo "${machine}-${os}${release}" |
202 | 217 | exit ;; |
218 | + *:Bitrig:*:*) | |
219 | + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` | |
220 | + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} | |
221 | + exit ;; | |
203 | 222 | *:OpenBSD:*:*) |
204 | 223 | UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` |
205 | 224 | echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} |
@@ -302,7 +321,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | ||
302 | 321 | arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) |
303 | 322 | echo arm-acorn-riscix${UNAME_RELEASE} |
304 | 323 | exit ;; |
305 | - arm:riscos:*:*|arm:RISCOS:*:*) | |
324 | + arm*:riscos:*:*|arm*:RISCOS:*:*) | |
306 | 325 | echo arm-unknown-riscos |
307 | 326 | exit ;; |
308 | 327 | SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) |
@@ -801,6 +820,9 @@ EOF | ||
801 | 820 | i*:CYGWIN*:*) |
802 | 821 | echo ${UNAME_MACHINE}-pc-cygwin |
803 | 822 | exit ;; |
823 | + *:MINGW64*:*) | |
824 | + echo ${UNAME_MACHINE}-pc-mingw64 | |
825 | + exit ;; | |
804 | 826 | *:MINGW*:*) |
805 | 827 | echo ${UNAME_MACHINE}-pc-mingw32 |
806 | 828 | exit ;; |
@@ -852,21 +874,21 @@ EOF | ||
852 | 874 | exit ;; |
853 | 875 | *:GNU:*:*) |
854 | 876 | # the GNU system |
855 | - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` | |
877 | + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` | |
856 | 878 | exit ;; |
857 | 879 | *:GNU/*:*:*) |
858 | 880 | # other systems with GNU libc and userland |
859 | - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu | |
881 | + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} | |
860 | 882 | exit ;; |
861 | 883 | i*86:Minix:*:*) |
862 | 884 | echo ${UNAME_MACHINE}-pc-minix |
863 | 885 | exit ;; |
864 | 886 | aarch64:Linux:*:*) |
865 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
887 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
866 | 888 | exit ;; |
867 | 889 | aarch64_be:Linux:*:*) |
868 | 890 | UNAME_MACHINE=aarch64_be |
869 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
891 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
870 | 892 | exit ;; |
871 | 893 | alpha:Linux:*:*) |
872 | 894 | case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in |
@@ -879,59 +901,54 @@ EOF | ||
879 | 901 | EV68*) UNAME_MACHINE=alphaev68 ;; |
880 | 902 | esac |
881 | 903 | objdump --private-headers /bin/sh | grep -q ld.so.1 |
882 | - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi | |
883 | - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} | |
904 | + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi | |
905 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
906 | + exit ;; | |
907 | + arc:Linux:*:* | arceb:Linux:*:*) | |
908 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
884 | 909 | exit ;; |
885 | 910 | arm*:Linux:*:*) |
886 | 911 | eval $set_cc_for_build |
887 | 912 | if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ |
888 | 913 | | grep -q __ARM_EABI__ |
889 | 914 | then |
890 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
915 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
891 | 916 | else |
892 | 917 | if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ |
893 | 918 | | grep -q __ARM_PCS_VFP |
894 | 919 | then |
895 | - echo ${UNAME_MACHINE}-unknown-linux-gnueabi | |
920 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi | |
896 | 921 | else |
897 | - echo ${UNAME_MACHINE}-unknown-linux-gnueabihf | |
922 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf | |
898 | 923 | fi |
899 | 924 | fi |
900 | 925 | exit ;; |
901 | 926 | avr32*:Linux:*:*) |
902 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
927 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
903 | 928 | exit ;; |
904 | 929 | cris:Linux:*:*) |
905 | - echo ${UNAME_MACHINE}-axis-linux-gnu | |
930 | + echo ${UNAME_MACHINE}-axis-linux-${LIBC} | |
906 | 931 | exit ;; |
907 | 932 | crisv32:Linux:*:*) |
908 | - echo ${UNAME_MACHINE}-axis-linux-gnu | |
933 | + echo ${UNAME_MACHINE}-axis-linux-${LIBC} | |
909 | 934 | exit ;; |
910 | 935 | frv:Linux:*:*) |
911 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
936 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
912 | 937 | exit ;; |
913 | 938 | hexagon:Linux:*:*) |
914 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
939 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
915 | 940 | exit ;; |
916 | 941 | i*86:Linux:*:*) |
917 | - LIBC=gnu | |
918 | - eval $set_cc_for_build | |
919 | - sed 's/^ //' << EOF >$dummy.c | |
920 | - #ifdef __dietlibc__ | |
921 | - LIBC=dietlibc | |
922 | - #endif | |
923 | -EOF | |
924 | - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` | |
925 | - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" | |
942 | + echo ${UNAME_MACHINE}-pc-linux-${LIBC} | |
926 | 943 | exit ;; |
927 | 944 | ia64:Linux:*:*) |
928 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
945 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
929 | 946 | exit ;; |
930 | 947 | m32r*:Linux:*:*) |
931 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
948 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
932 | 949 | exit ;; |
933 | 950 | m68*:Linux:*:*) |
934 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
951 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
935 | 952 | exit ;; |
936 | 953 | mips:Linux:*:* | mips64:Linux:*:*) |
937 | 954 | eval $set_cc_for_build |
@@ -950,54 +967,63 @@ EOF | ||
950 | 967 | #endif |
951 | 968 | EOF |
952 | 969 | eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` |
953 | - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } | |
970 | + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } | |
954 | 971 | ;; |
972 | + or1k:Linux:*:*) | |
973 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
974 | + exit ;; | |
955 | 975 | or32:Linux:*:*) |
956 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
976 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
957 | 977 | exit ;; |
958 | 978 | padre:Linux:*:*) |
959 | - echo sparc-unknown-linux-gnu | |
979 | + echo sparc-unknown-linux-${LIBC} | |
960 | 980 | exit ;; |
961 | 981 | parisc64:Linux:*:* | hppa64:Linux:*:*) |
962 | - echo hppa64-unknown-linux-gnu | |
982 | + echo hppa64-unknown-linux-${LIBC} | |
963 | 983 | exit ;; |
964 | 984 | parisc:Linux:*:* | hppa:Linux:*:*) |
965 | 985 | # Look for CPU level |
966 | 986 | case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in |
967 | - PA7*) echo hppa1.1-unknown-linux-gnu ;; | |
968 | - PA8*) echo hppa2.0-unknown-linux-gnu ;; | |
969 | - *) echo hppa-unknown-linux-gnu ;; | |
987 | + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; | |
988 | + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; | |
989 | + *) echo hppa-unknown-linux-${LIBC} ;; | |
970 | 990 | esac |
971 | 991 | exit ;; |
972 | 992 | ppc64:Linux:*:*) |
973 | - echo powerpc64-unknown-linux-gnu | |
993 | + echo powerpc64-unknown-linux-${LIBC} | |
974 | 994 | exit ;; |
975 | 995 | ppc:Linux:*:*) |
976 | - echo powerpc-unknown-linux-gnu | |
996 | + echo powerpc-unknown-linux-${LIBC} | |
997 | + exit ;; | |
998 | + ppc64le:Linux:*:*) | |
999 | + echo powerpc64le-unknown-linux-${LIBC} | |
1000 | + exit ;; | |
1001 | + ppcle:Linux:*:*) | |
1002 | + echo powerpcle-unknown-linux-${LIBC} | |
977 | 1003 | exit ;; |
978 | 1004 | s390:Linux:*:* | s390x:Linux:*:*) |
979 | - echo ${UNAME_MACHINE}-ibm-linux | |
1005 | + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} | |
980 | 1006 | exit ;; |
981 | 1007 | sh64*:Linux:*:*) |
982 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1008 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
983 | 1009 | exit ;; |
984 | 1010 | sh*:Linux:*:*) |
985 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1011 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
986 | 1012 | exit ;; |
987 | 1013 | sparc:Linux:*:* | sparc64:Linux:*:*) |
988 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1014 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
989 | 1015 | exit ;; |
990 | 1016 | tile*:Linux:*:*) |
991 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1017 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
992 | 1018 | exit ;; |
993 | 1019 | vax:Linux:*:*) |
994 | - echo ${UNAME_MACHINE}-dec-linux-gnu | |
1020 | + echo ${UNAME_MACHINE}-dec-linux-${LIBC} | |
995 | 1021 | exit ;; |
996 | 1022 | x86_64:Linux:*:*) |
997 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1023 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
998 | 1024 | exit ;; |
999 | 1025 | xtensa*:Linux:*:*) |
1000 | - echo ${UNAME_MACHINE}-unknown-linux-gnu | |
1026 | + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} | |
1001 | 1027 | exit ;; |
1002 | 1028 | i*86:DYNIX/ptx:4*:*) |
1003 | 1029 | # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. |
@@ -1201,6 +1227,9 @@ EOF | ||
1201 | 1227 | BePC:Haiku:*:*) # Haiku running on Intel PC compatible. |
1202 | 1228 | echo i586-pc-haiku |
1203 | 1229 | exit ;; |
1230 | + x86_64:Haiku:*:*) | |
1231 | + echo x86_64-unknown-haiku | |
1232 | + exit ;; | |
1204 | 1233 | SX-4:SUPER-UX:*:*) |
1205 | 1234 | echo sx4-nec-superux${UNAME_RELEASE} |
1206 | 1235 | exit ;; |
@@ -1227,19 +1256,21 @@ EOF | ||
1227 | 1256 | exit ;; |
1228 | 1257 | *:Darwin:*:*) |
1229 | 1258 | UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown |
1230 | - case $UNAME_PROCESSOR in | |
1231 | - i386) | |
1232 | - eval $set_cc_for_build | |
1233 | - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then | |
1234 | - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ | |
1235 | - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ | |
1236 | - grep IS_64BIT_ARCH >/dev/null | |
1237 | - then | |
1238 | - UNAME_PROCESSOR="x86_64" | |
1239 | - fi | |
1240 | - fi ;; | |
1241 | - unknown) UNAME_PROCESSOR=powerpc ;; | |
1242 | - esac | |
1259 | + eval $set_cc_for_build | |
1260 | + if test "$UNAME_PROCESSOR" = unknown ; then | |
1261 | + UNAME_PROCESSOR=powerpc | |
1262 | + fi | |
1263 | + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then | |
1264 | + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ | |
1265 | + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ | |
1266 | + grep IS_64BIT_ARCH >/dev/null | |
1267 | + then | |
1268 | + case $UNAME_PROCESSOR in | |
1269 | + i386) UNAME_PROCESSOR=x86_64 ;; | |
1270 | + powerpc) UNAME_PROCESSOR=powerpc64 ;; | |
1271 | + esac | |
1272 | + fi | |
1273 | + fi | |
1243 | 1274 | echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} |
1244 | 1275 | exit ;; |
1245 | 1276 | *:procnto*:*:* | *:QNX:[0123456789]*:*) |
@@ -1256,7 +1287,7 @@ EOF | ||
1256 | 1287 | NEO-?:NONSTOP_KERNEL:*:*) |
1257 | 1288 | echo neo-tandem-nsk${UNAME_RELEASE} |
1258 | 1289 | exit ;; |
1259 | - NSE-?:NONSTOP_KERNEL:*:*) | |
1290 | + NSE-*:NONSTOP_KERNEL:*:*) | |
1260 | 1291 | echo nse-tandem-nsk${UNAME_RELEASE} |
1261 | 1292 | exit ;; |
1262 | 1293 | NSR-?:NONSTOP_KERNEL:*:*) |
@@ -1330,9 +1361,6 @@ EOF | ||
1330 | 1361 | exit ;; |
1331 | 1362 | esac |
1332 | 1363 | |
1333 | -#echo '(No uname command or uname output not recognized.)' 1>&2 | |
1334 | -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 | |
1335 | - | |
1336 | 1364 | eval $set_cc_for_build |
1337 | 1365 | cat >$dummy.c <<EOF |
1338 | 1366 | #ifdef _SEQUENT_ |
@@ -1,24 +1,18 @@ | ||
1 | 1 | #! /bin/sh |
2 | 2 | # Configuration validation subroutine script. |
3 | -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | |
4 | -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, | |
5 | -# 2011, 2012 Free Software Foundation, Inc. | |
3 | +# Copyright 1992-2013 Free Software Foundation, Inc. | |
6 | 4 | |
7 | -timestamp='2012-04-18' | |
5 | +timestamp='2013-08-10' | |
8 | 6 | |
9 | -# This file is (in principle) common to ALL GNU software. | |
10 | -# The presence of a machine in this file suggests that SOME GNU software | |
11 | -# can handle that machine. It does not imply ALL GNU software can. | |
12 | -# | |
13 | -# This file is free software; you can redistribute it and/or modify | |
14 | -# it under the terms of the GNU General Public License as published by | |
15 | -# the Free Software Foundation; either version 2 of the License, or | |
7 | +# This file is free software; you can redistribute it and/or modify it | |
8 | +# under the terms of the GNU General Public License as published by | |
9 | +# the Free Software Foundation; either version 3 of the License, or | |
16 | 10 | # (at your option) any later version. |
17 | 11 | # |
18 | -# This program is distributed in the hope that it will be useful, | |
19 | -# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 | -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 | -# GNU General Public License for more details. | |
12 | +# This program is distributed in the hope that it will be useful, but | |
13 | +# WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | +# General Public License for more details. | |
22 | 16 | # |
23 | 17 | # You should have received a copy of the GNU General Public License |
24 | 18 | # along with this program; if not, see <http://www.gnu.org/licenses/>. |
@@ -26,11 +20,12 @@ timestamp='2012-04-18' | ||
26 | 20 | # As a special exception to the GNU General Public License, if you |
27 | 21 | # distribute this file as part of a program that contains a |
28 | 22 | # configuration script generated by Autoconf, you may include it under |
29 | -# the same distribution terms that you use for the rest of that program. | |
23 | +# the same distribution terms that you use for the rest of that | |
24 | +# program. This Exception is an additional permission under section 7 | |
25 | +# of the GNU General Public License, version 3 ("GPLv3"). | |
30 | 26 | |
31 | 27 | |
32 | -# Please send patches to <config-patches@gnu.org>. Submit a context | |
33 | -# diff and a properly formatted GNU ChangeLog entry. | |
28 | +# Please send patches with a ChangeLog entry to config-patches@gnu.org. | |
34 | 29 | # |
35 | 30 | # Configuration subroutine to validate and canonicalize a configuration type. |
36 | 31 | # Supply the specified configuration type as an argument. |
@@ -73,9 +68,7 @@ Report bugs and patches to <config-patches@gnu.org>." | ||
73 | 68 | version="\ |
74 | 69 | GNU config.sub ($timestamp) |
75 | 70 | |
76 | -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, | |
77 | -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 | |
78 | -Free Software Foundation, Inc. | |
71 | +Copyright 1992-2013 Free Software Foundation, Inc. | |
79 | 72 | |
80 | 73 | This is free software; see the source for copying conditions. There is NO |
81 | 74 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -123,7 +116,7 @@ esac | ||
123 | 116 | maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` |
124 | 117 | case $maybe_os in |
125 | 118 | nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ |
126 | - linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ | |
119 | + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ | |
127 | 120 | knetbsd*-gnu* | netbsd*-gnu* | \ |
128 | 121 | kopensolaris*-gnu* | \ |
129 | 122 | storm-chaos* | os2-emx* | rtmk-nova*) |
@@ -156,7 +149,7 @@ case $os in | ||
156 | 149 | -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ |
157 | 150 | -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ |
158 | 151 | -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ |
159 | - -apple | -axis | -knuth | -cray | -microblaze) | |
152 | + -apple | -axis | -knuth | -cray | -microblaze*) | |
160 | 153 | os= |
161 | 154 | basic_machine=$1 |
162 | 155 | ;; |
@@ -259,10 +252,12 @@ case $basic_machine in | ||
259 | 252 | | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ |
260 | 253 | | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ |
261 | 254 | | am33_2.0 \ |
262 | - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | |
263 | - | be32 | be64 \ | |
255 | + | arc | arceb \ | |
256 | + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | |
257 | + | avr | avr32 \ | |
258 | + | be32 | be64 \ | |
264 | 259 | | bfin \ |
265 | - | c4x | clipper \ | |
260 | + | c4x | c8051 | clipper \ | |
266 | 261 | | d10v | d30v | dlx | dsp16xx \ |
267 | 262 | | epiphany \ |
268 | 263 | | fido | fr30 | frv \ |
@@ -273,7 +268,7 @@ case $basic_machine in | ||
273 | 268 | | le32 | le64 \ |
274 | 269 | | lm32 \ |
275 | 270 | | m32c | m32r | m32rle | m68000 | m68k | m88k \ |
276 | - | maxq | mb | microblaze | mcore | mep | metag \ | |
271 | + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | |
277 | 272 | | mips | mipsbe | mipseb | mipsel | mipsle \ |
278 | 273 | | mips16 \ |
279 | 274 | | mips64 | mips64el \ |
@@ -291,16 +286,17 @@ case $basic_machine in | ||
291 | 286 | | mipsisa64r2 | mipsisa64r2el \ |
292 | 287 | | mipsisa64sb1 | mipsisa64sb1el \ |
293 | 288 | | mipsisa64sr71k | mipsisa64sr71kel \ |
289 | + | mipsr5900 | mipsr5900el \ | |
294 | 290 | | mipstx39 | mipstx39el \ |
295 | 291 | | mn10200 | mn10300 \ |
296 | 292 | | moxie \ |
297 | 293 | | mt \ |
298 | 294 | | msp430 \ |
299 | 295 | | nds32 | nds32le | nds32be \ |
300 | - | nios | nios2 \ | |
296 | + | nios | nios2 | nios2eb | nios2el \ | |
301 | 297 | | ns16k | ns32k \ |
302 | 298 | | open8 \ |
303 | - | or32 \ | |
299 | + | or1k | or32 \ | |
304 | 300 | | pdp10 | pdp11 | pj | pjl \ |
305 | 301 | | powerpc | powerpc64 | powerpc64le | powerpcle \ |
306 | 302 | | pyramid \ |
@@ -370,13 +366,13 @@ case $basic_machine in | ||
370 | 366 | | aarch64-* | aarch64_be-* \ |
371 | 367 | | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ |
372 | 368 | | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ |
373 | - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | |
369 | + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | |
374 | 370 | | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ |
375 | 371 | | avr-* | avr32-* \ |
376 | 372 | | be32-* | be64-* \ |
377 | 373 | | bfin-* | bs2000-* \ |
378 | 374 | | c[123]* | c30-* | [cjt]90-* | c4x-* \ |
379 | - | clipper-* | craynv-* | cydra-* \ | |
375 | + | c8051-* | clipper-* | craynv-* | cydra-* \ | |
380 | 376 | | d10v-* | d30v-* | dlx-* \ |
381 | 377 | | elxsi-* \ |
382 | 378 | | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ |
@@ -389,7 +385,8 @@ case $basic_machine in | ||
389 | 385 | | lm32-* \ |
390 | 386 | | m32c-* | m32r-* | m32rle-* \ |
391 | 387 | | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ |
392 | - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | |
388 | + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | |
389 | + | microblaze-* | microblazeel-* \ | |
393 | 390 | | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ |
394 | 391 | | mips16-* \ |
395 | 392 | | mips64-* | mips64el-* \ |
@@ -407,12 +404,13 @@ case $basic_machine in | ||
407 | 404 | | mipsisa64r2-* | mipsisa64r2el-* \ |
408 | 405 | | mipsisa64sb1-* | mipsisa64sb1el-* \ |
409 | 406 | | mipsisa64sr71k-* | mipsisa64sr71kel-* \ |
407 | + | mipsr5900-* | mipsr5900el-* \ | |
410 | 408 | | mipstx39-* | mipstx39el-* \ |
411 | 409 | | mmix-* \ |
412 | 410 | | mt-* \ |
413 | 411 | | msp430-* \ |
414 | 412 | | nds32-* | nds32le-* | nds32be-* \ |
415 | - | nios-* | nios2-* \ | |
413 | + | nios-* | nios2-* | nios2eb-* | nios2el-* \ | |
416 | 414 | | none-* | np1-* | ns16k-* | ns32k-* \ |
417 | 415 | | open8-* \ |
418 | 416 | | orion-* \ |
@@ -788,11 +786,15 @@ case $basic_machine in | ||
788 | 786 | basic_machine=ns32k-utek |
789 | 787 | os=-sysv |
790 | 788 | ;; |
791 | - microblaze) | |
789 | + microblaze*) | |
792 | 790 | basic_machine=microblaze-xilinx |
793 | 791 | ;; |
792 | + mingw64) | |
793 | + basic_machine=x86_64-pc | |
794 | + os=-mingw64 | |
795 | + ;; | |
794 | 796 | mingw32) |
795 | - basic_machine=i386-pc | |
797 | + basic_machine=i686-pc | |
796 | 798 | os=-mingw32 |
797 | 799 | ;; |
798 | 800 | mingw32ce) |
@@ -828,7 +830,7 @@ case $basic_machine in | ||
828 | 830 | basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` |
829 | 831 | ;; |
830 | 832 | msys) |
831 | - basic_machine=i386-pc | |
833 | + basic_machine=i686-pc | |
832 | 834 | os=-msys |
833 | 835 | ;; |
834 | 836 | mvs) |
@@ -1019,7 +1021,11 @@ case $basic_machine in | ||
1019 | 1021 | basic_machine=i586-unknown |
1020 | 1022 | os=-pw32 |
1021 | 1023 | ;; |
1022 | - rdos) | |
1024 | + rdos | rdos64) | |
1025 | + basic_machine=x86_64-pc | |
1026 | + os=-rdos | |
1027 | + ;; | |
1028 | + rdos32) | |
1023 | 1029 | basic_machine=i386-pc |
1024 | 1030 | os=-rdos |
1025 | 1031 | ;; |
@@ -1346,21 +1352,21 @@ case $os in | ||
1346 | 1352 | -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ |
1347 | 1353 | | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ |
1348 | 1354 | | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ |
1349 | - | -sym* | -kopensolaris* \ | |
1355 | + | -sym* | -kopensolaris* | -plan9* \ | |
1350 | 1356 | | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ |
1351 | 1357 | | -aos* | -aros* \ |
1352 | 1358 | | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ |
1353 | 1359 | | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ |
1354 | 1360 | | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ |
1355 | - | -openbsd* | -solidbsd* \ | |
1361 | + | -bitrig* | -openbsd* | -solidbsd* \ | |
1356 | 1362 | | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ |
1357 | 1363 | | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ |
1358 | 1364 | | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ |
1359 | 1365 | | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ |
1360 | 1366 | | -chorusos* | -chorusrdb* | -cegcc* \ |
1361 | 1367 | | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ |
1362 | - | -mingw32* | -linux-gnu* | -linux-android* \ | |
1363 | - | -linux-newlib* | -linux-uclibc* \ | |
1368 | + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | |
1369 | + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | |
1364 | 1370 | | -uxpv* | -beos* | -mpeix* | -udk* \ |
1365 | 1371 | | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ |
1366 | 1372 | | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ |
@@ -1492,9 +1498,6 @@ case $os in | ||
1492 | 1498 | -aros*) |
1493 | 1499 | os=-aros |
1494 | 1500 | ;; |
1495 | - -kaos*) | |
1496 | - os=-kaos | |
1497 | - ;; | |
1498 | 1501 | -zvmoe) |
1499 | 1502 | os=-zvmoe |
1500 | 1503 | ;; |
@@ -1543,6 +1546,9 @@ case $basic_machine in | ||
1543 | 1546 | c4x-* | tic4x-*) |
1544 | 1547 | os=-coff |
1545 | 1548 | ;; |
1549 | + c8051-*) | |
1550 | + os=-elf | |
1551 | + ;; | |
1546 | 1552 | hexagon-*) |
1547 | 1553 | os=-elf |
1548 | 1554 | ;; |
@@ -1586,6 +1592,9 @@ case $basic_machine in | ||
1586 | 1592 | mips*-*) |
1587 | 1593 | os=-elf |
1588 | 1594 | ;; |
1595 | + or1k-*) | |
1596 | + os=-elf | |
1597 | + ;; | |
1589 | 1598 | or32-*) |
1590 | 1599 | os=-coff |
1591 | 1600 | ;; |
@@ -1,7 +1,7 @@ | ||
1 | 1 | #!/bin/sh |
2 | 2 | # install - install a program, script, or datafile |
3 | 3 | |
4 | -scriptversion=2011-01-19.21; # UTC | |
4 | +scriptversion=2011-11-20.07; # UTC | |
5 | 5 | |
6 | 6 | # This originates from X11R5 (mit/util/scripts/install.sh), which was |
7 | 7 | # later released in X11R6 (xc/config/util/install.sh) with the |
@@ -35,7 +35,7 @@ scriptversion=2011-01-19.21; # UTC | ||
35 | 35 | # FSF changes to this file are in the public domain. |
36 | 36 | # |
37 | 37 | # Calling this script install-sh is preferred over install.sh, to prevent |
38 | -# `make' implicit rules from creating a file called install from it | |
38 | +# 'make' implicit rules from creating a file called install from it | |
39 | 39 | # when there is no Makefile. |
40 | 40 | # |
41 | 41 | # This script is compatible with the BSD install script, but was written |
@@ -156,7 +156,7 @@ while test $# -ne 0; do | ||
156 | 156 | -s) stripcmd=$stripprog;; |
157 | 157 | |
158 | 158 | -t) dst_arg=$2 |
159 | - # Protect names problematic for `test' and other utilities. | |
159 | + # Protect names problematic for 'test' and other utilities. | |
160 | 160 | case $dst_arg in |
161 | 161 | -* | [=\(\)!]) dst_arg=./$dst_arg;; |
162 | 162 | esac |
@@ -190,7 +190,7 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then | ||
190 | 190 | fi |
191 | 191 | shift # arg |
192 | 192 | dst_arg=$arg |
193 | - # Protect names problematic for `test' and other utilities. | |
193 | + # Protect names problematic for 'test' and other utilities. | |
194 | 194 | case $dst_arg in |
195 | 195 | -* | [=\(\)!]) dst_arg=./$dst_arg;; |
196 | 196 | esac |
@@ -202,7 +202,7 @@ if test $# -eq 0; then | ||
202 | 202 | echo "$0: no input file specified." >&2 |
203 | 203 | exit 1 |
204 | 204 | fi |
205 | - # It's OK to call `install-sh -d' without argument. | |
205 | + # It's OK to call 'install-sh -d' without argument. | |
206 | 206 | # This can happen when creating conditional directories. |
207 | 207 | exit 0 |
208 | 208 | fi |
@@ -240,7 +240,7 @@ fi | ||
240 | 240 | |
241 | 241 | for src |
242 | 242 | do |
243 | - # Protect names problematic for `test' and other utilities. | |
243 | + # Protect names problematic for 'test' and other utilities. | |
244 | 244 | case $src in |
245 | 245 | -* | [=\(\)!]) src=./$src;; |
246 | 246 | esac |
@@ -354,7 +354,7 @@ do | ||
354 | 354 | if test -z "$dir_arg" || { |
355 | 355 | # Check for POSIX incompatibilities with -m. |
356 | 356 | # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or |
357 | - # other-writeable bit of parent directory when it shouldn't. | |
357 | + # other-writable bit of parent directory when it shouldn't. | |
358 | 358 | # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. |
359 | 359 | ls_ld_tmpdir=`ls -ld "$tmpdir"` |
360 | 360 | case $ls_ld_tmpdir in |
@@ -135,7 +135,12 @@ | ||
135 | 135 | "Button2-Off" 'tab-window-add-to-tabgroup |
136 | 136 | "C-Button2-Off" 'tab-tabgroup-add-to-tabgroup |
137 | 137 | "Button1-Off2" 'toggle-window-shaded |
138 | - "Button1-Move" 'move-window-interactively) | |
138 | + "Button1-Move" 'move-window-interactively | |
139 | + "Button1-C-Off" 'tab-move-to-left | |
140 | + "Button3-C-Off" 'tab-move-to-right | |
141 | + "Button1-Super-Off" 'tab-move-to-beginning | |
142 | + "Button3-Super-Off" 'tab-move-to-end) | |
143 | + | |
139 | 144 | "Keymap of window tabbar. Mouse-bindings only." |
140 | 145 | :group bindings |
141 | 146 | :type keymap) |
@@ -139,6 +139,7 @@ Also need the currect settings in the theme.jl from the theme." | ||
139 | 139 | wins)) |
140 | 140 | |
141 | 141 | (define (tab-rank elem list) |
142 | + "Returns the nth position from elem (tab) in a list (tabbar)" | |
142 | 143 | (if (eq elem (car list)) |
143 | 144 | 0 |
144 | 145 | (+ 1 (tab-rank elem (cdr list))))) |
@@ -409,6 +410,85 @@ sticky, unsticky, fixed-position." | ||
409 | 410 | |
410 | 411 | (define-command 'tab-raise-right-window tab-raise-right-window) |
411 | 412 | |
413 | + (define (move-tab w pos) | |
414 | + "Move tab W to pos" | |
415 | + (when (window-tabbed-p w) | |
416 | + (let* ((wins (tab-group-window-index w)) | |
417 | + (rank (tab-rank w wins)) | |
418 | + (list-end (nthcdr rank wins)) | |
419 | + (list-start wins) | |
420 | + right left current new-list) | |
421 | + (mapcar (lambda (w) | |
422 | + (setq list-start (remove w list-start))) list-end) | |
423 | + (when (eq pos 'next) | |
424 | + (if (not (nth (+ rank 1) wins)) | |
425 | + (tab-move-to-beginning w) | |
426 | + (setq list-end (remove w list-end)) | |
427 | + (setq right (nth (+ rank 1) wins)) | |
428 | + (setq list-end (remove (nth (+ rank 1) wins) list-end)) | |
429 | + (setq current (list w)) | |
430 | + (if (consp list-start) | |
431 | + (setq new-list (append new-list list-start))) | |
432 | + (if right | |
433 | + (setq new-list (append new-list (list right)))) | |
434 | + (if (consp current) | |
435 | + (setq new-list (append new-list current))) | |
436 | + (if (consp list-end) | |
437 | + (setq new-list (append new-list list-end))) | |
438 | + (setq all-wins (nthcdr 0 new-list)) | |
439 | + (after-move-resize w))) | |
440 | + (when (eq pos 'prev) | |
441 | + (setq left (last list-start)) | |
442 | + (if (not left) | |
443 | + (tab-move-to-end w) | |
444 | + (setq list-start (remove left list-start)) | |
445 | + (setq list-end (nthcdr (+ rank 1) wins)) | |
446 | + (setq current (list w)) | |
447 | + (if (consp list-start) | |
448 | + (setq new-list (append new-list list-start))) | |
449 | + (if (consp current) | |
450 | + (setq new-list (append new-list current))) | |
451 | + (if left | |
452 | + (setq new-list (append new-list (list left)))) | |
453 | + (if (consp list-end) | |
454 | + (setq new-list (append new-list list-end))) | |
455 | + (setq all-wins (nthcdr 0 new-list)) | |
456 | + (after-move-resize w)))))) | |
457 | + | |
458 | + (define (tab-move-to-right w) | |
459 | + "Move tab to right in the tabbar." | |
460 | + (move-tab w 'next)) | |
461 | + | |
462 | + (define-command 'tab-move-to-right tab-move-to-right #:spec "%f") | |
463 | + | |
464 | + (define (tab-move-to-left w) | |
465 | + "Move tab to left in the tabbar." | |
466 | + (move-tab w 'prev)) | |
467 | + | |
468 | + (define-command 'tab-move-to-left tab-move-to-left #:spec "%f") | |
469 | + | |
470 | + (define (move-tab-edge w pos) | |
471 | + "Move tab W to pos" | |
472 | + (when (window-tabbed-p w) | |
473 | + (let ((tabs (remove w (tab-group-window-index w)))) | |
474 | + (if (eq pos 'end) | |
475 | + (setq all-wins (append tabs (cons w nil)))) | |
476 | + (if (eq pos 'beg) | |
477 | + (setq all-wins (append (cons w nil) tabs))) | |
478 | + (after-move-resize w)))) | |
479 | + | |
480 | + (define (tab-move-to-end w) | |
481 | + "Move tab to the end in the tabbar." | |
482 | + (move-tab-edge w 'end)) | |
483 | + | |
484 | + (define-command 'tab-move-to-end tab-move-to-end #:spec "%f") | |
485 | + | |
486 | + (define (tab-move-to-beginning w) | |
487 | + "Move tab to the beginning in the tabbar." | |
488 | + (move-tab-edge w 'beg)) | |
489 | + | |
490 | + (define-command 'tab-move-to-beginning tab-move-to-beginning #:spec "%f") | |
491 | + | |
412 | 492 | (define (map-other-grouped-windows win func) |
413 | 493 | "" |
414 | 494 | (mapcar func |