From 1408b0d5a921988f07912bbfe53d6f9251482ebc Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 25 Jan 2007 05:26:01 +0000 Subject: [PATCH 001/131] (custom-deps, finder-data): Add dependency to loaddefs.el. --- lisp/ChangeLog | 5 +++++ lisp/Makefile.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 306e84c3788..86666d5857a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-24 Dan Nicolaescu + + * Makefile.in (custom-deps, finder-data): Add dependency to + loaddefs.el. + 2007-01-24 Miles Bader * emacs-lisp/bytecomp.el (byte-compile-output-file-form) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 6ddc0b56f46..3e155bf2b89 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -87,12 +87,12 @@ doit: $(lisp)/cus-load.el: touch $@ -custom-deps: $(lisp)/cus-load.el doit +custom-deps: $(lisp)/loaddefs.el $(lisp)/cus-load.el doit wd=$(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins -finder-data: doit +finder-data: $(lisp)/loaddefs.el doit wd=$(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins From 86302e37c36884d68b7ba0de801abb2b372a84bd Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 26 Jan 2007 08:35:54 +0000 Subject: [PATCH 002/131] (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Use BLOCK_INPUT/UNBLOCK_INPUT. --- src/alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alloc.c b/src/alloc.c index f24d77f0519..5cf22eb62e7 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -131,7 +131,7 @@ static pthread_mutex_t alloc_mutex; do \ { \ if (pthread_equal (pthread_self (), main_thread)) \ - sigblock (sigmask (SIGIO)); \ + BLOCK_INPUT; \ pthread_mutex_lock (&alloc_mutex); \ } \ while (0) @@ -140,7 +140,7 @@ static pthread_mutex_t alloc_mutex; { \ pthread_mutex_unlock (&alloc_mutex); \ if (pthread_equal (pthread_self (), main_thread)) \ - sigunblock (sigmask (SIGIO)); \ + UNBLOCK_INPUT; \ } \ while (0) From cf2db1459f7b60659b2e0d52f292072c018660ec Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 26 Jan 2007 08:36:18 +0000 Subject: [PATCH 003/131] (interrupt_input_blocked): Declare volatile. --- src/blockinput.h | 2 +- src/keyboard.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blockinput.h b/src/blockinput.h index fcaa64723bc..468f0e0c762 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -49,7 +49,7 @@ Boston, MA 02110-1301, USA. */ interrupt_input_pending to a non-zero value. If that flag is set when input becomes unblocked, UNBLOCK_INPUT will send a new SIGIO. */ -extern int interrupt_input_blocked; +extern volatile int interrupt_input_blocked; /* Nonzero means an input interrupt has arrived during the current critical section. */ diff --git a/src/keyboard.c b/src/keyboard.c index ca1c1d5168f..48cf2673a90 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -90,7 +90,7 @@ extern int errno; /* Variables for blockinput.h: */ /* Non-zero if interrupt input is blocked right now. */ -int interrupt_input_blocked; +volatile int interrupt_input_blocked; /* Nonzero means an input interrupt has arrived during the current critical section. */ From 3fb8b536ddb9f41273b336a5a78a2a9063a8f8b7 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 26 Jan 2007 08:36:34 +0000 Subject: [PATCH 004/131] (SIGNAL_THREAD_CHECK): Use pthread_equal. --- src/ChangeLog | 11 +++++++++++ src/syssignal.h | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 80d9d85eff7..3bf6763f6b7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,14 @@ +2007-01-26 YAMAMOTO Mitsuharu + + * alloc.c (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Use + BLOCK_INPUT/UNBLOCK_INPUT. + + * blockinput.h (interrupt_input_blocked): Declare volatile. + + * keyboard.c (interrupt_input_blocked): Declare volatile. + + * syssignal.h (SIGNAL_THREAD_CHECK): Use pthread_equal. + 2007-01-24 Kim F. Storm * keymap.c (describe_map): Don't consider prefix keys to be shadowed. diff --git a/src/syssignal.h b/src/syssignal.h index a4e3fcb3e1b..36292670bc6 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -210,7 +210,7 @@ char *strsignal (); #ifdef HAVE_GTK_AND_PTHREAD #define SIGNAL_THREAD_CHECK(signo) \ do { \ - if (pthread_self () != main_thread) \ + if (!pthread_equal (pthread_self (), main_thread)) \ { \ /* POSIX says any thread can receive the signal. On GNU/Linux \ that is not true, but for other systems (FreeBSD at least) \ From f2133d9e8f7d7a25462dd127d4a614bfb1cbbaae Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 26 Jan 2007 15:29:17 +0000 Subject: [PATCH 005/131] (finder-data, custom-deps): Depend on $(lisp)/loaddefs.el. --- lisp/ChangeLog | 5 +++++ lisp/makefile.w32-in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 86666d5857a..0170c52c33a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-26 Eli Zaretskii + + * makefile.w32-in (finder-data, custom-deps): Depend on + $(lisp)/loaddefs.el. + 2007-01-24 Dan Nicolaescu * Makefile.in (custom-deps, finder-data): Add dependency to diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 61e7a358f49..e3ea090d652 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -96,11 +96,11 @@ $(lisp)/cus-load.el: touch $@ # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as # this can break with GNU Make 3.81 and later if sh.exe is used. -custom-deps: $(lisp)/cus-load.el doit +custom-deps: $(lisp)/cus-load.el $(lisp)/loaddefs.el doit @echo Directories: $(WINS) -$(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hook nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS) -finder-data: doit +finder-data: $(lisp)/loaddefs.el doit @echo Directories: $(WINS) $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS) From aa4ff486d453328e8eee0a57c1f3307cf008bca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 26 Jan 2007 16:32:49 +0000 Subject: [PATCH 006/131] Add check for libXft. --- configure.in | 31 +++++++++++++++++++++++++++++++ src/ChangeLog | 4 ++++ 2 files changed, 35 insertions(+) diff --git a/configure.in b/configure.in index ceed242cd49..3c0dad5a561 100644 --- a/configure.in +++ b/configure.in @@ -2150,6 +2150,37 @@ if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk"; then fi fi +### Link with -lXft if available to work around a bug. +HAVE_XFT=maybe +if test "${HAVE_GTK}" = "yes"; then + dnl Check if --with-pkg-config-prog has been given. + if test "X${with_pkg_config_prog}" != X; then + PKG_CONFIG="${with_pkg_config_prog}" + fi + + PKG_CHECK_MODULES(XFT, xft >= 0.13.0, , HAVE_XFT=no) + if test "$HAVE_XFT" != no; then + OLD_CFLAGS="$CPPFLAGS" + OLD_CFLAGS="$CFLAGS" + OLD_LIBS="$LIBS" + CPPFLAGS="$CPPFLAGS $XFT_CFLAGS" + CFLAGS="$CFLAGS $XFT_CFLAGS" + LIBS="$XFT_LIBS $LIBS" + AC_CHECK_HEADER(X11/Xft/Xft.h, + AC_CHECK_LIB(Xft, XftFontOpen, HAVE_XFT=yes, , $XFT_LIBS)) + + if test "${HAVE_XFT}" = "yes"; then + AC_DEFINE(HAVE_XFT, 1, [Define to 1 if you have the Xft library.]) + AC_SUBST(XFT_LIBS) + C_SWITCH_X_SITE="$C_SWITCH_X_SITE $XFT_CFLAGS" + else + CFLAGS="$OLD_CPPFLAGS" + CFLAGS="$OLD_CFLAGS" + LIBS="$OLD_LIBS" + fi + fi +fi + dnl Do not put whitespace before the #include statements below. dnl Older compilers (eg sunos4 cc) choke on it. if test x"${USE_X_TOOLKIT}" = xmaybe; then diff --git a/src/ChangeLog b/src/ChangeLog index 3bf6763f6b7..3d7db34a057 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-01-26 Jan Dj,Ad(Brv + + * Makefile.in: Use XFT_LIBS if defined. + 2007-01-26 YAMAMOTO Mitsuharu * alloc.c (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Use From 7e6601408a43babc044898a2fde27d4b16d717ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 26 Jan 2007 16:33:01 +0000 Subject: [PATCH 007/131] Use XFT_LIBS if defined. --- src/Makefile.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Makefile.in b/src/Makefile.in index 49fcbe8508f..8dd211c0fa2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -402,6 +402,11 @@ LIBXT=$(LIBW) #endif #endif /* not USE_X_TOOLKIT */ +#if HAVE_XFT +#undef LIB_X11_LIB +#define LIB_X11_LIB @XFT_LIBS@ +#endif /* HAVE_XFT */ + #if HAVE_XPM #ifndef LIBXPM #define LIBXPM -lXpm From 9d89ffd03e596580c136547a80acfa1baf2293c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 26 Jan 2007 16:33:30 +0000 Subject: [PATCH 008/131] Regenerated --- configure | 331 +++++++++++++++++++++++++++++++++++++++++++++++++- src/config.in | 3 + 2 files changed, 331 insertions(+), 3 deletions(-) diff --git a/configure b/configure index cbde07567a2..672c1a9e111 100755 --- a/configure +++ b/configure @@ -689,6 +689,8 @@ SET_MAKE XMKMF GTK_CFLAGS GTK_LIBS +XFT_CFLAGS +XFT_LIBS ALLOCA liblockfile LIBOBJS @@ -11670,6 +11672,327 @@ _ACEOF fi fi +### Link with -lXft if available to work around a bug. +HAVE_XFT=maybe +if test "${HAVE_GTK}" = "yes"; then + if test "X${with_pkg_config_prog}" != X; then + PKG_CONFIG="${with_pkg_config_prog}" + fi + + + succeeded=no + + if test -z "$PKG_CONFIG"; then + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +echo "${ECHO_T}$PKG_CONFIG" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + fi + + if test "$PKG_CONFIG" = "no" ; then + HAVE_XFT=no + else + PKG_CONFIG_MIN_VERSION=0.9.0 + if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then + { echo "$as_me:$LINENO: checking for xft >= 0.13.0" >&5 +echo $ECHO_N "checking for xft >= 0.13.0... $ECHO_C" >&6; } + + if $PKG_CONFIG --exists "xft >= 0.13.0" 2>&5; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + succeeded=yes + + { echo "$as_me:$LINENO: checking XFT_CFLAGS" >&5 +echo $ECHO_N "checking XFT_CFLAGS... $ECHO_C" >&6; } + XFT_CFLAGS=`$PKG_CONFIG --cflags "xft >= 0.13.0"` + { echo "$as_me:$LINENO: result: $XFT_CFLAGS" >&5 +echo "${ECHO_T}$XFT_CFLAGS" >&6; } + + { echo "$as_me:$LINENO: checking XFT_LIBS" >&5 +echo $ECHO_N "checking XFT_LIBS... $ECHO_C" >&6; } + XFT_LIBS=`$PKG_CONFIG --libs "xft >= 0.13.0"` + { echo "$as_me:$LINENO: result: $XFT_LIBS" >&5 +echo "${ECHO_T}$XFT_LIBS" >&6; } + else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + XFT_CFLAGS="" + XFT_LIBS="" + ## If we have a custom action on failure, don't print errors, but + ## do set a variable so people can do so. + XFT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xft >= 0.13.0"` + + fi + + + + else + echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." + echo "*** See http://www.freedesktop.org/software/pkgconfig" + fi + fi + + if test $succeeded = yes; then + : + else + HAVE_XFT=no + fi + + if test "$HAVE_XFT" != no; then + OLD_CFLAGS="$CPPFLAGS" + OLD_CFLAGS="$CFLAGS" + OLD_LIBS="$LIBS" + CPPFLAGS="$CPPFLAGS $XFT_CFLAGS" + CFLAGS="$CFLAGS $XFT_CFLAGS" + LIBS="$XFT_LIBS $LIBS" + if test "${ac_cv_header_X11_Xft_Xft_h+set}" = set; then + { echo "$as_me:$LINENO: checking for X11/Xft/Xft.h" >&5 +echo $ECHO_N "checking for X11/Xft/Xft.h... $ECHO_C" >&6; } +if test "${ac_cv_header_X11_Xft_Xft_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xft_Xft_h" >&5 +echo "${ECHO_T}$ac_cv_header_X11_Xft_Xft_h" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking X11/Xft/Xft.h usability" >&5 +echo $ECHO_N "checking X11/Xft/Xft.h usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking X11/Xft/Xft.h presence" >&5 +echo $ECHO_N "checking X11/Xft/Xft.h presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: present but cannot be compiled" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: X11/Xft/Xft.h: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: X11/Xft/Xft.h: in the future, the compiler will take precedence" >&2;} + + ;; +esac +{ echo "$as_me:$LINENO: checking for X11/Xft/Xft.h" >&5 +echo $ECHO_N "checking for X11/Xft/Xft.h... $ECHO_C" >&6; } +if test "${ac_cv_header_X11_Xft_Xft_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_header_X11_Xft_Xft_h=$ac_header_preproc +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xft_Xft_h" >&5 +echo "${ECHO_T}$ac_cv_header_X11_Xft_Xft_h" >&6; } + +fi +if test $ac_cv_header_X11_Xft_Xft_h = yes; then + { echo "$as_me:$LINENO: checking for XftFontOpen in -lXft" >&5 +echo $ECHO_N "checking for XftFontOpen in -lXft... $ECHO_C" >&6; } +if test "${ac_cv_lib_Xft_XftFontOpen+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lXft $XFT_LIBS $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char XftFontOpen (); +int +main () +{ +return XftFontOpen (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_Xft_XftFontOpen=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_Xft_XftFontOpen=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xft_XftFontOpen" >&5 +echo "${ECHO_T}$ac_cv_lib_Xft_XftFontOpen" >&6; } +if test $ac_cv_lib_Xft_XftFontOpen = yes; then + HAVE_XFT=yes +fi + +fi + + + + if test "${HAVE_XFT}" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_XFT 1 +_ACEOF + + + C_SWITCH_X_SITE="$C_SWITCH_X_SITE $XFT_CFLAGS" + else + CFLAGS="$OLD_CPPFLAGS" + CFLAGS="$OLD_CFLAGS" + LIBS="$OLD_LIBS" + fi + fi +fi + if test x"${USE_X_TOOLKIT}" = xmaybe; then if test x"${HAVE_X11R5}" = xyes; then { echo "$as_me:$LINENO: checking X11 version 5 with Xaw" >&5 @@ -23506,6 +23829,8 @@ SET_MAKE!$SET_MAKE$ac_delim XMKMF!$XMKMF$ac_delim GTK_CFLAGS!$GTK_CFLAGS$ac_delim GTK_LIBS!$GTK_LIBS$ac_delim +XFT_CFLAGS!$XFT_CFLAGS$ac_delim +XFT_LIBS!$XFT_LIBS$ac_delim ALLOCA!$ALLOCA$ac_delim liblockfile!$liblockfile$ac_delim LIBOBJS!$LIBOBJS$ac_delim @@ -23529,8 +23854,6 @@ gamedir!$gamedir$ac_delim gameuser!$gameuser$ac_delim c_switch_system!$c_switch_system$ac_delim c_switch_machine!$c_switch_machine$ac_delim -LD_SWITCH_X_SITE!$LD_SWITCH_X_SITE$ac_delim -LD_SWITCH_X_SITE_AUX!$LD_SWITCH_X_SITE_AUX$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then @@ -23572,6 +23895,8 @@ _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF +LD_SWITCH_X_SITE!$LD_SWITCH_X_SITE$ac_delim +LD_SWITCH_X_SITE_AUX!$LD_SWITCH_X_SITE_AUX$ac_delim C_SWITCH_X_SITE!$C_SWITCH_X_SITE$ac_delim X_TOOLKIT_TYPE!$X_TOOLKIT_TYPE$ac_delim machfile!$machfile$ac_delim @@ -23580,7 +23905,7 @@ carbon_appdir!$carbon_appdir$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 6; then + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 8; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 diff --git a/src/config.in b/src/config.in index cf22a72cf97..43c1efac14f 100644 --- a/src/config.in +++ b/src/config.in @@ -713,6 +713,9 @@ Boston, MA 02110-1301, USA. */ /* Define to 1 if you're using XFree386. */ #undef HAVE_XFREE386 +/* Define to 1 if you have the Xft library. */ +#undef HAVE_XFT + /* Define to 1 if XIM is available */ #undef HAVE_XIM From cddb78449fc7eb110eb31974aee3ad623b802251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 26 Jan 2007 16:34:09 +0000 Subject: [PATCH 009/131] *** empty log message *** --- ChangeLog | 4 ++++ src/ChangeLog | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9e4bd3ce541..806efe75965 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-01-26 Jan Dj,Ad(Brv + + * configure.in: Add check for libXft. + 2007-01-18 Bruno Haible (tiny change) * INSTALL: Info files moved to share/info. diff --git a/src/ChangeLog b/src/ChangeLog index 3d7db34a057..c5f022e54e0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2007-01-26 Jan Dj,Ad(Brv + * gtkutil.c (xg_initialize): Call XftInit if HAVE_XFT. + * Makefile.in: Use XFT_LIBS if defined. 2007-01-26 YAMAMOTO Mitsuharu From 430e6c77d8ac048f3947ab918f484c5dedfa7ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Fri, 26 Jan 2007 16:34:19 +0000 Subject: [PATCH 010/131] (xg_initialize): Call XftInit if HAVE_XFT. --- src/gtkutil.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gtkutil.c b/src/gtkutil.c index dc81f016509..fe1eb6cdfdb 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -3937,6 +3937,11 @@ xg_initialize () { GtkBindingSet *binding_set; +#if HAVE_XFT + /* Work around a bug with corrupted data if libXft gets unloaded. This way + we keep it permanently linked in. */ + XftInit (0); +#endif xg_ignore_gtk_scrollbar = 0; xg_detached_menus = 0; xg_menu_cb_list.prev = xg_menu_cb_list.next = From d47570439f26569d1eafbcd6436d6f97fad38f21 Mon Sep 17 00:00:00 2001 From: Vinicius Jose Latorre Date: Sat, 27 Jan 2007 00:10:33 +0000 Subject: [PATCH 011/131] Fix background height --- etc/ChangeLog | 4 ++++ etc/ps-prin1.ps | 12 +++++++----- lisp/ChangeLog | 9 +++++++-- lisp/ps-print.el | 6 +++--- 4 files changed, 21 insertions(+), 10 deletions(-) diff --git a/etc/ChangeLog b/etc/ChangeLog index 9c0cf45f12e..0c5e0742192 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,7 @@ +2007-01-26 Vinicius Jose Latorre + + * ps-prin1.ps (printBackground): Fix background height. + 2007-01-20 Glenn Morris * cd-dired-ref.tex (versionemacs): New def. diff --git a/etc/ps-prin1.ps b/etc/ps-prin1.ps index 118133ba73b..3ab3d6176f6 100644 --- a/etc/ps-prin1.ps +++ b/etc/ps-prin1.ps @@ -1,7 +1,7 @@ % === BEGIN ps-print prologue 1 -% version: 6.0 +% version: 6.1 -% Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +% Copyright (C) 2000, 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc. % % This file is part of GNU Emacs. % @@ -429,14 +429,16 @@ StandardEncoding 46 82 getinterval aload pop % stack: -- /printBackground{ /BackgroundColor where{ + /LHg LineHeight 0.65 mul def + /PHg PrintHeight LHg add def pop gsave BackgroundColor SetColor NumberOfColumns{ gsave - 0 LineHeight 0.65 mul rmoveto + 0 LHg rmoveto PrintWidth 0 rlineto - 0 PrintHeight neg rlineto + 0 PHg neg rlineto PrintWidth neg 0 rlineto - 0 PrintHeight rlineto + 0 PHg rlineto fill grestore PrintWidth InterColumn add 0 rmoveto diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0170c52c33a..38763f69e51 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-26 Vinicius Jose Latorre + + * ps-print.ps: Fix background height. + (ps-print-version): New version 6.7.2. + 2007-01-26 Eli Zaretskii * makefile.w32-in (finder-data, custom-deps): Depend on @@ -100,7 +105,7 @@ * ps-print.el: Handle frame parameters (background and/or foreground colors) changing dynamically. Reported by Leo . - (ps-print-version): New Version 6.7.1. + (ps-print-version): New version 6.7.1. (ps-x-frame-property, ps-e-frame-parameter): New aliases. (ps-frame-parameter): New fun. (ps-default-fg, ps-default-bg): New default value ('frame-parameter). @@ -1306,7 +1311,7 @@ * ps-mule.el: Eliminate Emacs 20 compatibility. * ps-print.el: Eliminate Emacs 20 & 21 compatibility. - (ps-print-version): New Version 6.7. + (ps-print-version): New version 6.7. (ps-print-quote): Replace '?\ ' by '?\s'. 2006-11-30 Juanma Barranquero diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 2484bd677cd..ca8cada2b2e 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -10,11 +10,11 @@ ;; Maintainer: Kenichi Handa (multi-byte characters) ;; Vinicius Jose Latorre ;; Keywords: wp, print, PostScript -;; Version: 6.7.1 +;; Version: 6.7.2 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre -(defconst ps-print-version "6.7.1" - "ps-print.el, v 6.7.1 <2007/01/21 vinicius> +(defconst ps-print-version "6.7.2" + "ps-print.el, v 6.7.2 <2007/01/26 vinicius> Vinicius's last change version -- this file may have been edited as part of Emacs without changes to the version number. When reporting bugs, please also From b36156297724ba50d2e52c60ccd29eef3ec464fe Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 27 Jan 2007 04:32:24 +0000 Subject: [PATCH 012/131] *** empty log message *** --- admin/FOR-RELEASE | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 84ada56b26d..1bfe847a646 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -77,6 +77,10 @@ through the custom mechanism. ** ZTHJWSQQAFHV@spammotel.com, Jan 12: Color-theme problems in Emacs 22+ (Ubuntu, Windows) +** jka-compr fails when default-directory is nonexistent. + +** Tramp fails when default-directory is nonexistent. + * DOCUMENTATION ** Check the Emacs Tutorial. From 1bfb06fb187499fe548400dc41efa2eac87f2bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Sat, 27 Jan 2007 06:29:16 +0000 Subject: [PATCH 013/131] Removed Gtk/Xft issue. --- admin/ChangeLog | 4 ++++ admin/FOR-RELEASE | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/admin/ChangeLog b/admin/ChangeLog index c36ebf904d6..f675cdbb4e5 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog @@ -1,3 +1,7 @@ +2007-01-27 Jan Dj,AC$(Brv + + * FOR-RELEASE: Removed Gtk/Xft issue. + 2007-01-01 Miles Bader * quick-install-emacs (get_config_var): Deal with weird magic diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 1bfe847a646..4ae30b70e84 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -66,11 +66,6 @@ RMS says that there is no code in the generated defcustom, or elsewhere in the generated code, to implement setting that variable through the custom mechanism. -** b.riefenstahl@turtle-trading.net, Dec 29: - GTK build crashes under X - Seems to be a libXft or gtk theme bug, not an Emacs bug. - However, a workaround is possible. - ** simon.marshall@misys.com, Jan 12: Font-lock decides function call is function declaration in C+ + From 9c9a895c81dddb8e771eae42e7df8b734e32f8cb Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 27 Jan 2007 10:51:04 +0000 Subject: [PATCH 014/131] Regenerate to remove obsolete entries. --- lisp/ldefs-boot.el | 1607 ++++++++++++++++++-------------------------- 1 file changed, 656 insertions(+), 951 deletions(-) diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 30d43d80abf..6381034904f 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -4,7 +4,7 @@ ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" -;;;;;; "play/5x5.el" (17843 45625)) +;;;;;; "play/5x5.el" (17851 10865)) ;;; Generated autoloads from play/5x5.el (autoload (quote 5x5) "5x5" "\ @@ -63,14 +63,14 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "abbrev" "abbrev.el" (17843 45609)) +;;;### (autoloads nil "abbrev" "abbrev.el" (17851 10813)) ;;; Generated autoloads from abbrev.el (put 'abbrev-mode 'safe-local-variable 'booleanp) ;;;*** ;;;### (autoloads (list-one-abbrev-table) "abbrevlist" "abbrevlist.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10813)) ;;; Generated autoloads from abbrevlist.el (autoload (quote list-one-abbrev-table) "abbrevlist" "\ @@ -81,7 +81,7 @@ Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER. ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload (quote ada-add-extensions) "ada-mode" "\ @@ -142,7 +142,7 @@ If you use ada-xref.el: ;;;*** ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload (quote ada-header) "ada-stmt" "\ @@ -153,7 +153,7 @@ Insert a descriptive header at the top of the file. ;;;*** ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload (quote ada-find-file) "ada-xref" "\ @@ -168,7 +168,7 @@ Completion is available. ;;;;;; change-log-mode add-change-log-entry-other-window add-change-log-entry ;;;;;; find-change-log prompt-for-change-log-name add-log-mailing-address ;;;;;; add-log-full-name add-log-current-defun-function) "add-log" -;;;;;; "add-log.el" (17844 62922)) +;;;;;; "add-log.el" (17851 10813)) ;;; Generated autoloads from add-log.el (defvar add-log-current-defun-function nil "\ @@ -306,7 +306,7 @@ Fix any old-style date entries in the current log file to default format. ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) -;;;;;; "advice" "emacs-lisp/advice.el" (17843 45615)) +;;;;;; "advice" "emacs-lisp/advice.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action (quote warn) "\ @@ -434,7 +434,7 @@ See Info node `(elisp)Advising Functions' for comprehensive documentation. ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule ;;;;;; align-highlight-rule align-current align-entire align-regexp -;;;;;; align) "align" "align.el" (17843 45609)) +;;;;;; align) "align" "align.el" (17851 10813)) ;;; Generated autoloads from align.el (autoload (quote align) "align" "\ @@ -524,7 +524,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10813)) ;;; Generated autoloads from allout.el (put (quote allout-show-bodies) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) @@ -827,7 +827,7 @@ setup for auto-startup. ;;;*** ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" -;;;;;; "net/ange-ftp.el" (17843 45624)) +;;;;;; "net/ange-ftp.el" (17851 10863)) ;;; Generated autoloads from net/ange-ftp.el (defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) @@ -849,7 +849,7 @@ Not documented ;;;*** ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) -;;;;;; "animate" "play/animate.el" (17843 45625)) +;;;;;; "animate" "play/animate.el" (17851 10865)) ;;; Generated autoloads from play/animate.el (autoload (quote animate-string) "animate" "\ @@ -877,7 +877,7 @@ You can specify the one's name by NAME; the default value is \"Sarah\". ;;;*** ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) -;;;;;; "ansi-color" "ansi-color.el" (17843 45609)) +;;;;;; "ansi-color" "ansi-color.el" (17851 10813)) ;;; Generated autoloads from ansi-color.el (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ @@ -903,7 +903,7 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) -;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17838 18033)) +;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17851 10866)) ;;; Generated autoloads from progmodes/antlr-mode.el (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ @@ -942,7 +942,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time -;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17843 45615)) +;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17851 10850)) ;;; Generated autoloads from calendar/appt.el (defvar appt-issue-message t "\ @@ -1030,7 +1030,7 @@ ARG is positive, otherwise off. ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" -;;;;;; "apropos.el" (17843 45609)) +;;;;;; "apropos.el" (17851 10813)) ;;; Generated autoloads from apropos.el (autoload (quote apropos-read-pattern) "apropos" "\ @@ -1126,8 +1126,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17843 -;;;;;; 45609)) +;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17851 +;;;;;; 10814)) ;;; Generated autoloads from arc-mode.el (autoload (quote archive-mode) "arc-mode" "\ @@ -1147,7 +1147,7 @@ archive. ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (17843 45609)) +;;;### (autoloads (array-mode) "array" "array.el" (17851 10814)) ;;; Generated autoloads from array.el (autoload (quote array-mode) "array" "\ @@ -1218,8 +1218,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17843 -;;;;;; 45629)) +;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17851 +;;;;;; 10872)) ;;; Generated autoloads from textmodes/artist.el (autoload (quote artist-mode) "artist" "\ @@ -1424,8 +1424,8 @@ Keymap summary ;;;*** -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17843 -;;;;;; 45626)) +;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17851 +;;;;;; 10866)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload (quote asm-mode) "asm-mode" "\ @@ -1450,26 +1450,10 @@ Special commands: \(fn)" t nil) -;;;*** - -;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el" -;;;;;; (17075 55468)) -;;; Generated autoloads from obsolete/auto-show.el - -(defvar auto-show-mode nil "\ -Obsolete.") - -(custom-autoload (quote auto-show-mode) "auto-show") - -(autoload (quote auto-show-mode) "auto-show" "\ -This command is obsolete. - -\(fn ARG)" t nil) - ;;;*** ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10814)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1523,7 +1507,7 @@ etc. to supply digit arguments. ;;;*** ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from progmodes/autoconf.el (autoload (quote autoconf-mode) "autoconf" "\ @@ -1534,7 +1518,7 @@ Major mode for editing Autoconf configure.in files. ;;;*** ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) -;;;;;; "autoinsert" "autoinsert.el" (17843 45609)) +;;;;;; "autoinsert" "autoinsert.el" (17851 10814)) ;;; Generated autoloads from autoinsert.el (autoload (quote auto-insert) "autoinsert" "\ @@ -1573,7 +1557,7 @@ insert a template for the file depending on the mode of the buffer. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from emacs-lisp/autoload.el (autoload (quote update-file-autoloads) "autoload" "\ @@ -1608,7 +1592,7 @@ Calls `update-directory-autoloads' on the command line arguments. ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) -;;;;;; "autorevert" "autorevert.el" (17843 45609)) +;;;;;; "autorevert" "autorevert.el" (17851 10814)) ;;; Generated autoloads from autorevert.el (autoload (quote auto-revert-mode) "autorevert" "\ @@ -1677,7 +1661,7 @@ Use `auto-revert-mode' to revert a particular buffer. ;;;*** ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" -;;;;;; "avoid.el" (17843 45609)) +;;;;;; "avoid.el" (17851 10814)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1718,7 +1702,7 @@ definition of \"random distance\".) ;;;*** ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from emacs-lisp/backquote.el (autoload (quote backquote) "backquote" "\ @@ -1743,7 +1727,7 @@ Vectors work just like lists. Nested backquotes are permitted. ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10815)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1775,7 +1759,7 @@ seconds. ;;;*** ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) -;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17843 45615)) +;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload (quote benchmark-run) "benchmark" "\ @@ -1807,8 +1791,8 @@ non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17843 -;;;;;; 45630)) +;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17851 +;;;;;; 10872)) ;;; Generated autoloads from textmodes/bibtex.el (autoload (quote bibtex-mode) "bibtex" "\ @@ -1870,7 +1854,7 @@ if that value is non-nil. ;;;### (autoloads (binhex-decode-region binhex-decode-region-external ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10856)) ;;; Generated autoloads from gnus/binhex.el (defconst binhex-begin-line "^:...............................................................$") @@ -1893,8 +1877,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17843 -;;;;;; 45625)) +;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17851 +;;;;;; 10865)) ;;; Generated autoloads from play/blackbox.el (autoload (quote blackbox) "blackbox" "\ @@ -2016,7 +2000,7 @@ a reflection. ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump -;;;;;; bookmark-set) "bookmark" "bookmark.el" (17843 45609)) +;;;;;; bookmark-set) "bookmark" "bookmark.el" (17851 10815)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) @@ -2206,7 +2190,7 @@ deletion, or > if it is flagged for displaying. ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-url-at-point ;;;;;; browse-url-galeon-program browse-url-firefox-program browse-url-browser-function) -;;;;;; "browse-url" "net/browse-url.el" (17843 45624)) +;;;;;; "browse-url" "net/browse-url.el" (17851 10863)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ @@ -2537,8 +2521,8 @@ Default to the URL around or before point. ;;;*** -;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17843 -;;;;;; 45625)) +;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17851 +;;;;;; 10865)) ;;; Generated autoloads from play/bruce.el (autoload (quote bruce) "bruce" "\ @@ -2554,7 +2538,7 @@ Return a vector containing the lines from `bruce-phrases-file'. ;;;*** ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) -;;;;;; "bs" "bs.el" (17843 45609)) +;;;;;; "bs" "bs.el" (17851 10816)) ;;; Generated autoloads from bs.el (autoload (quote bs-cycle-next) "bs" "\ @@ -2595,8 +2579,8 @@ name of buffer configuration. ;;;*** ;;;### (autoloads (insert-text-button make-text-button insert-button -;;;;;; make-button define-button-type) "button" "button.el" (17843 -;;;;;; 45609)) +;;;;;; make-button define-button-type) "button" "button.el" (17851 +;;;;;; 10816)) ;;; Generated autoloads from button.el (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ @@ -2684,7 +2668,7 @@ Also see `make-text-button'. ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile ;;;;;; compile-defun byte-compile-file byte-recompile-directory ;;;;;; byte-force-recompile byte-compile-warnings-safe-p) "bytecomp" -;;;;;; "emacs-lisp/bytecomp.el" (17843 45615)) +;;;;;; "emacs-lisp/bytecomp.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) @@ -2788,7 +2772,7 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17843 45615)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17851 10850)) ;;; Generated autoloads from calendar/cal-dst.el (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) @@ -2798,7 +2782,7 @@ and corresponding effects. ;;;*** ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10850)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ @@ -2813,7 +2797,7 @@ from the cursor position. ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10850)) ;;; Generated autoloads from calc/calc.el (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ @@ -2891,8 +2875,8 @@ Not documented ;;;*** -;;;### (autoloads (calculator) "calculator" "calculator.el" (17843 -;;;;;; 45609)) +;;;### (autoloads (calculator) "calculator" "calculator.el" (17851 +;;;;;; 10816)) ;;; Generated autoloads from calculator.el (autoload (quote calculator) "calculator" "\ @@ -2920,7 +2904,7 @@ See the documentation for `calculator-mode' for more information. ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar ;;;;;; view-diary-entries-initially calendar-offset) "calendar" -;;;;;; "calendar/calendar.el" (17843 45615)) +;;;;;; "calendar/calendar.el" (17851 10851)) ;;; Generated autoloads from calendar/calendar.el (defvar calendar-offset 0 "\ @@ -3493,7 +3477,7 @@ movement commands will not work correctly.") ;;;*** ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" -;;;;;; "gnus/canlock.el" (17843 45616)) +;;;;;; "gnus/canlock.el" (17851 10856)) ;;; Generated autoloads from gnus/canlock.el (autoload (quote canlock-insert-header) "canlock" "\ @@ -3510,15 +3494,15 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (17843 -;;;;;; 45626)) +;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (17851 +;;;;;; 10866)) ;;; Generated autoloads from progmodes/cc-compat.el (put 'c-indent-level 'safe-local-variable 'integerp) ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload (quote c-guess-basic-syntax) "cc-engine" "\ @@ -3530,7 +3514,7 @@ Return the syntactic context of the current line. ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload (quote c-initialize-cc-mode) "cc-mode" "\ @@ -3688,7 +3672,7 @@ Key bindings: ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (17843 45627)) +;;;;;; "progmodes/cc-styles.el" (17851 10867)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload (quote c-set-style) "cc-styles" "\ @@ -3739,14 +3723,14 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17843 -;;;;;; 45627)) +;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17851 +;;;;;; 10867)) ;;; Generated autoloads from progmodes/cc-subword.el (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (17843 45627)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (17851 10867)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3756,7 +3740,7 @@ and exists only for compatibility reasons. ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/ccl.el (autoload (quote ccl-compile) "ccl" "\ @@ -4015,7 +3999,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/cfengine.el (autoload (quote cfengine-mode) "cfengine" "\ @@ -4037,7 +4021,7 @@ to the action header. ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (autoload (quote checkdoc) "checkdoc" "\ @@ -4220,8 +4204,8 @@ checking of documentation strings. ;;;*** ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer -;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17843 -;;;;;; 45620)) +;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17851 +;;;;;; 10861)) ;;; Generated autoloads from language/china-util.el (autoload (quote decode-hz-region) "china-util" "\ @@ -4249,7 +4233,7 @@ Encode the text in the current buffer to HZ. ;;;*** ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) -;;;;;; "chistory" "chistory.el" (17843 45609)) +;;;;;; "chistory" "chistory.el" (17851 10817)) ;;; Generated autoloads from chistory.el (autoload (quote repeat-matching-complex-command) "chistory" "\ @@ -4288,7 +4272,7 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17843 45615)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4304,7 +4288,7 @@ a future Emacs interpreter will be able to use it.") ;;;*** ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload (quote common-lisp-indent-function) "cl-indent" "\ @@ -4315,7 +4299,7 @@ Not documented ;;;*** ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload (quote c-macro-expand) "cmacexp" "\ @@ -4335,8 +4319,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** -;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17843 -;;;;;; 45609)) +;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17851 +;;;;;; 10817)) ;;; Generated autoloads from cmuscheme.el (autoload (quote run-scheme) "cmuscheme" "\ @@ -4358,7 +4342,7 @@ is run). ;;;*** ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/code-pages.el (autoload (quote cp-make-coding-system) "code-pages" "\ @@ -4419,7 +4403,7 @@ Return an updated `non-iso-charset-alist'. ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) -;;;;;; "codepage" "international/codepage.el" (17843 45618)) +;;;;;; "codepage" "international/codepage.el" (17851 10860)) ;;; Generated autoloads from international/codepage.el (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ @@ -4478,7 +4462,7 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal. ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10817)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ @@ -4568,8 +4552,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17843 -;;;;;; 45609)) +;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17851 +;;;;;; 10817)) ;;; Generated autoloads from compare-w.el (autoload (quote compare-windows) "compare-w" "\ @@ -4606,7 +4590,7 @@ on third call it again advances points to the next difference and so on. ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start ;;;;;; compile compilation-disable-input compile-command compilation-search-path ;;;;;; compilation-ask-about-save compilation-window-height compilation-mode-hook) -;;;;;; "compile" "progmodes/compile.el" (17843 45627)) +;;;;;; "compile" "progmodes/compile.el" (17851 10867)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4768,7 +4752,7 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10818)) ;;; Generated autoloads from complete.el (defvar partial-completion-mode nil "\ @@ -4810,7 +4794,7 @@ second TAB brings up the `*Completions*' buffer. ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10818)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4832,7 +4816,7 @@ Enable dynamic word-completion. ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after ;;;;;; find-composition compose-chars decompose-string compose-string ;;;;;; decompose-region compose-region encode-composition-rule) -;;;;;; "composite" "composite.el" (17843 45609)) +;;;;;; "composite" "composite.el" (17851 10818)) ;;; Generated autoloads from composite.el (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ @@ -5054,7 +5038,7 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored. ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload (quote conf-mode) "conf-mode" "\ @@ -5210,7 +5194,7 @@ For details see `conf-mode'. Example: ;;;*** ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) -;;;;;; "cookie1" "play/cookie1.el" (17843 45625)) +;;;;;; "cookie1" "play/cookie1.el" (17851 10865)) ;;; Generated autoloads from play/cookie1.el (autoload (quote cookie) "cookie1" "\ @@ -5242,7 +5226,7 @@ Randomly permute the elements of VECTOR (all permutations equally likely). ;;;*** ;;;### (autoloads (copyright copyright-fix-years copyright-update) -;;;;;; "copyright" "emacs-lisp/copyright.el" (17843 45615)) +;;;;;; "copyright" "emacs-lisp/copyright.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/copyright.el (autoload (quote copyright-update) "copyright" "\ @@ -5270,7 +5254,7 @@ Insert a copyright by $ORGANIZATION notice at cursor. ;;;*** ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) -;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (17843 45627)) +;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (17851 10867)) ;;; Generated autoloads from progmodes/cperl-mode.el (autoload (quote cperl-mode) "cperl-mode" "\ @@ -5461,7 +5445,7 @@ Run a `perldoc' on the word around point. ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/cpp.el (autoload (quote cpp-highlight-buffer) "cpp" "\ @@ -5480,7 +5464,7 @@ Edit display information for cpp conditionals. ;;;*** ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emulation/crisp.el (defvar crisp-mode nil "\ @@ -5504,7 +5488,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload (quote completing-read-multiple) "crm" "\ @@ -5540,7 +5524,7 @@ INHERIT-INPUT-METHOD. ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5608,7 +5592,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;;;; customize-mode customize customize-save-variable customize-set-variable ;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically ;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10819)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5912,7 +5896,7 @@ The format is suitable for use with `easy-menu-define'. ;;;*** ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces -;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17843 45609)) +;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17851 10821)) ;;; Generated autoloads from cus-face.el (autoload (quote custom-declare-face) "cus-face" "\ @@ -5982,7 +5966,7 @@ This means reset FACE to its value in FROM-THEME. ;;;*** ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10821)) ;;; Generated autoloads from cus-theme.el (autoload (quote customize-create-theme) "cus-theme" "\ @@ -5993,7 +5977,7 @@ Create a custom theme. ;;;*** ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10822)) ;;; Generated autoloads from cvs-status.el (autoload (quote cvs-status-mode) "cvs-status" "\ @@ -6004,7 +5988,7 @@ Mode used for cvs status output. ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (17843 45627)) +;;;;;; "cwarn" "progmodes/cwarn.el" (17851 10867)) ;;; Generated autoloads from progmodes/cwarn.el (autoload (quote cwarn-mode) "cwarn" "\ @@ -6047,7 +6031,7 @@ in which `turn-on-cwarn-mode-if-enabled' turns it on. ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" -;;;;;; (17843 45620)) +;;;;;; (17851 10861)) ;;; Generated autoloads from language/cyril-util.el (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ @@ -6076,7 +6060,7 @@ If the argument is nil, we return the display table to its standard state. ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (17843 45609)) +;;;;;; (17851 10822)) ;;; Generated autoloads from dabbrev.el (define-key esc-map "/" 'dabbrev-expand) (define-key esc-map [?\C-/] 'dabbrev-completion) @@ -6120,8 +6104,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17843 -;;;;;; 45627)) +;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17851 +;;;;;; 10867)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload (quote dcl-mode) "dcl-mode" "\ @@ -6248,7 +6232,7 @@ There is some minimal font-lock support (see vars ;;;*** ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" -;;;;;; "emacs-lisp/debug.el" (17843 45615)) +;;;;;; "emacs-lisp/debug.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger (quote debug)) @@ -6292,7 +6276,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" -;;;;;; (17843 45625)) +;;;;;; (17851 10865)) ;;; Generated autoloads from play/decipher.el (autoload (quote decipher) "decipher" "\ @@ -6321,8 +6305,8 @@ The most useful commands are: ;;;*** ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region -;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17843 -;;;;;; 45609)) +;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17851 +;;;;;; 10822)) ;;; Generated autoloads from delim-col.el (autoload (quote delimit-columns-customize) "delim-col" "\ @@ -6346,8 +6330,8 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17843 -;;;;;; 45627)) +;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17851 +;;;;;; 10867)) ;;; Generated autoloads from progmodes/delphi.el (autoload (quote delphi-mode) "delphi" "\ @@ -6397,8 +6381,8 @@ no args, if that value is non-nil. ;;;*** -;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17843 -;;;;;; 45609)) +;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17851 +;;;;;; 10822)) ;;; Generated autoloads from delsel.el (defalias (quote pending-delete-mode) (quote delete-selection-mode)) @@ -6427,7 +6411,7 @@ any selection. ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (17843 45615)) +;;;;;; "derived" "emacs-lisp/derived.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload (quote define-derived-mode) "derived" "\ @@ -6492,7 +6476,7 @@ the first time the mode is used. ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (17843 45609)) +;;;;;; "descr-text.el" (17851 10822)) ;;; Generated autoloads from descr-text.el (autoload (quote describe-text-properties) "descr-text" "\ @@ -6518,7 +6502,7 @@ as well as widgets, buttons, overlays, and text properties. ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" -;;;;;; "desktop.el" (17843 45609)) +;;;;;; "desktop.el" (17851 10822)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6701,7 +6685,7 @@ Revert to the last loaded desktop. ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) -;;;;;; "deuglify" "gnus/deuglify.el" (17843 45616)) +;;;;;; "deuglify" "gnus/deuglify.el" (17851 10856)) ;;; Generated autoloads from gnus/deuglify.el (autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\ @@ -6734,7 +6718,7 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) -;;;;;; "devan-util" "language/devan-util.el" (17843 45620)) +;;;;;; "devan-util" "language/devan-util.el" (17851 10861)) ;;; Generated autoloads from language/devan-util.el (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") @@ -6752,7 +6736,7 @@ Not documented ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (17843 45615)) +;;;;;; "calendar/diary-lib.el" (17851 10852)) ;;; Generated autoloads from calendar/diary-lib.el (autoload (quote diary) "diary-lib" "\ @@ -6798,7 +6782,7 @@ Major mode for editing the diary file. ;;;*** ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" -;;;;;; "diff.el" (17843 45609)) +;;;;;; "diff.el" (17851 10822)) ;;; Generated autoloads from diff.el (defvar diff-switches "-c" "\ @@ -6832,7 +6816,7 @@ With prefix arg, prompt for diff switches. ;;;*** ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" -;;;;;; (17838 18032)) +;;;;;; (17851 10822)) ;;; Generated autoloads from diff-mode.el (autoload (quote diff-mode) "diff-mode" "\ @@ -6862,7 +6846,7 @@ Minor mode for viewing/editing context diffs. ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) -;;;;;; "dired" "dired.el" (17843 45609)) +;;;;;; "dired" "dired.el" (17851 10823)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches "-al" "\ @@ -7067,7 +7051,7 @@ Keybindings: ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff -;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17843 45609)) +;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17851 10822)) ;;; Generated autoloads from dired-aux.el (autoload (quote dired-diff) "dired-aux" "\ @@ -7479,7 +7463,7 @@ true then the type of the file linked to by FILE is printed instead. ;;;*** -;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17843 45609)) +;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17851 10823)) ;;; Generated autoloads from dired-x.el (autoload (quote dired-jump) "dired-x" "\ @@ -7493,7 +7477,7 @@ buffer and try again. ;;;*** -;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17843 45609)) +;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17851 10823)) ;;; Generated autoloads from dirtrack.el (autoload (quote dirtrack) "dirtrack" "\ @@ -7512,8 +7496,8 @@ You can enable directory tracking by adding this function to ;;;*** -;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17851 +;;;;;; 10852)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload (quote disassemble) "disass" "\ @@ -7531,7 +7515,7 @@ redefine OBJECT if it is a symbol. ;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii ;;;;;; standard-display-default standard-display-8bit describe-current-display-table ;;;;;; describe-display-table set-display-table-slot display-table-slot -;;;;;; make-display-table) "disp-table" "disp-table.el" (17843 45609)) +;;;;;; make-display-table) "disp-table" "disp-table.el" (17851 10823)) ;;; Generated autoloads from disp-table.el (autoload (quote make-display-table) "disp-table" "\ @@ -7632,7 +7616,7 @@ for users who call this function in `.emacs'. ;;;*** ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" -;;;;;; (17843 45625)) +;;;;;; (17851 10865)) ;;; Generated autoloads from play/dissociate.el (autoload (quote dissociated-press) "dissociate" "\ @@ -7648,7 +7632,7 @@ Default is 2. ;;;*** -;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17843 45609)) +;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17851 10823)) ;;; Generated autoloads from dnd.el (defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file) ("^\\(https?\\|ftp\\|file\\|nfs\\)://" . dnd-open-file))) "\ @@ -7669,7 +7653,7 @@ if some action was made, or nil if the URL is ignored.") ;;;*** ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" -;;;;;; "textmodes/dns-mode.el" (17843 45630)) +;;;;;; "textmodes/dns-mode.el" (17851 10872)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload (quote dns-mode) "dns-mode" "\ @@ -7693,7 +7677,7 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17843 45625)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17851 10865)) ;;; Generated autoloads from play/doctor.el (autoload (quote doctor) "doctor" "\ @@ -7704,7 +7688,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** ;;;### (autoloads (double-mode double-mode) "double" "double.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from double.el (defvar double-mode nil "\ @@ -7725,7 +7709,7 @@ when pressed twice. See variable `double-map' for details. ;;;*** -;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17843 45625)) +;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17851 10865)) ;;; Generated autoloads from play/dunnet.el (autoload (quote dunnet) "dunnet" "\ @@ -7736,7 +7720,7 @@ Switch to *dungeon* buffer and start game. ;;;*** ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10856)) ;;; Generated autoloads from gnus/earcon.el (autoload (quote gnus-earcon-display) "earcon" "\ @@ -7748,7 +7732,7 @@ Play sounds in message buffers. ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap ;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode" -;;;;;; "emacs-lisp/easy-mmode.el" (17843 45615)) +;;;;;; "emacs-lisp/easy-mmode.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) @@ -7840,8 +7824,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define -;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17843 -;;;;;; 45615)) +;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17851 +;;;;;; 10852)) ;;; Generated autoloads from emacs-lisp/easymenu.el (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) @@ -7990,7 +7974,7 @@ To implement dynamic menus, either call this from ;;;;;; ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ebnf-spool-file ;;;;;; ebnf-spool-directory ebnf-print-region ebnf-print-buffer ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" -;;;;;; "progmodes/ebnf2ps.el" (17843 45627)) +;;;;;; "progmodes/ebnf2ps.el" (17851 10867)) ;;; Generated autoloads from progmodes/ebnf2ps.el (autoload (quote ebnf-customize) "ebnf2ps" "\ @@ -8249,8 +8233,8 @@ See `ebnf-style-database' documentation. ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree -;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17827 -;;;;;; 37447)) +;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17822 +;;;;;; 38987)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload (quote ebrowse-tree-mode) "ebrowse" "\ @@ -8401,7 +8385,7 @@ Display statistics for a class tree. ;;;*** ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from ebuff-menu.el (autoload (quote electric-buffer-list) "ebuff-menu" "\ @@ -8426,7 +8410,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" -;;;;;; "echistory.el" (17843 45610)) +;;;;;; "echistory.el" (17851 10823)) ;;; Generated autoloads from echistory.el (autoload (quote Electric-command-history-redo-expression) "echistory" "\ @@ -8439,7 +8423,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" -;;;;;; "emacs-lisp/edebug.el" (17843 45615)) +;;;;;; "emacs-lisp/edebug.el" (17851 10852)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -8512,7 +8496,7 @@ Toggle edebugging of all forms. ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup -;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17843 45610)) +;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17851 10823)) ;;; Generated autoloads from ediff.el (autoload (quote ediff-files) "ediff" "\ @@ -8635,10 +8619,7 @@ If WIND-B is nil, use window next to WIND-A. (autoload (quote ediff-regions-wordwise) "ediff" "\ Run Ediff on a pair of regions in specified buffers. -Regions (i.e., point and mark) are assumed to be set in advance except -for the second region in the case both regions are from the same buffer. -In such a case the user is asked to interactively establish the second -region. +Regions (i.e., point and mark) can be set in advance or marked interactively. This function is effective only for relatively small regions, up to 200 lines. For large regions, use `ediff-regions-linewise'. @@ -8646,10 +8627,7 @@ lines. For large regions, use `ediff-regions-linewise'. (autoload (quote ediff-regions-linewise) "ediff" "\ Run Ediff on a pair of regions in specified buffers. -Regions (i.e., point and mark) are assumed to be set in advance except -for the second region in the case both regions are from the same buffer. -In such a case the user is asked to interactively establish the second -region. +Regions (i.e., point and mark) can be set in advance or marked interactively. Each region is enlarged to contain full lines. This function is effective for large regions, over 100-200 lines. For small regions, use `ediff-regions-wordwise'. @@ -8750,7 +8728,7 @@ With optional NODE, goes to that node. ;;;*** ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from ediff-help.el (autoload (quote ediff-customize) "ediff-help" "\ @@ -8760,7 +8738,7 @@ Not documented ;;;*** -;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17843 45610)) +;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17851 10823)) ;;; Generated autoloads from ediff-hook.el (defvar ediff-window-setup-function) @@ -8773,7 +8751,7 @@ Not documented ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from ediff-mult.el (autoload (quote ediff-show-registry) "ediff-mult" "\ @@ -8786,7 +8764,7 @@ Display Ediff's registry. ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "ediff-util.el" (17843 45610)) +;;;;;; "ediff-util" "ediff-util.el" (17851 10823)) ;;; Generated autoloads from ediff-util.el (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ @@ -8807,7 +8785,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from edmacro.el (defvar edmacro-eight-bits nil "\ @@ -8860,7 +8838,7 @@ or nil, use a compact 80-column format. ;;;*** ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" -;;;;;; "emulation/edt.el" (17843 45615)) +;;;;;; "emulation/edt.el" (17851 10853)) ;;; Generated autoloads from emulation/edt.el (autoload (quote edt-set-scroll-margins) "edt" "\ @@ -8878,7 +8856,7 @@ Turn on EDT Emulation. ;;;*** ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10823)) ;;; Generated autoloads from ehelp.el (autoload (quote with-electric-help) "ehelp" "\ @@ -8916,7 +8894,7 @@ Not documented ;;;*** ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) -;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17843 45615)) +;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string " ElDoc" "\ @@ -8954,8 +8932,8 @@ Emacs Lisp mode) that support Eldoc.") ;;;*** -;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17851 +;;;;;; 10826)) ;;; Generated autoloads from elide-head.el (autoload (quote elide-head) "elide-head" "\ @@ -8971,7 +8949,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload (quote elint-initialize) "elint" "\ @@ -8982,8 +8960,8 @@ Initialize elint. ;;;*** ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list -;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17843 -;;;;;; 45615)) +;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17851 +;;;;;; 10853)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload (quote elp-instrument-function) "elp" "\ @@ -9017,7 +8995,7 @@ displayed. ;;;*** ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" -;;;;;; (17843 45621)) +;;;;;; (17851 10861)) ;;; Generated autoloads from mail/emacsbug.el (autoload (quote report-emacs-bug) "emacsbug" "\ @@ -9032,7 +9010,7 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" -;;;;;; "emerge.el" (17167 2962)) +;;;;;; "emerge.el" (17197 14700)) ;;; Generated autoloads from emerge.el (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) @@ -9110,7 +9088,7 @@ Not documented ;;;*** ;;;### (autoloads (encoded-kbd-mode) "encoded-kb" "international/encoded-kb.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/encoded-kb.el (defvar encoded-kbd-mode nil "\ @@ -9139,7 +9117,7 @@ as a multilingual text encoded in a coding system set by ;;;*** ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) -;;;;;; "enriched" "textmodes/enriched.el" (17843 45630)) +;;;;;; "enriched" "textmodes/enriched.el" (17851 10872)) ;;; Generated autoloads from textmodes/enriched.el (autoload (quote enriched-mode) "enriched" "\ @@ -9170,7 +9148,7 @@ Not documented ;;;*** ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" -;;;;;; "erc/erc.el" (17839 38671)) +;;;;;; "erc/erc.el" (17851 10855)) ;;; Generated autoloads from erc/erc.el (autoload (quote erc-select-read-args) "erc" "\ @@ -9206,33 +9184,33 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17843 -;;;;;; 45616)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17851 +;;;;;; 10855)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17843 45616)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17851 10855)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (17843 45616)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (17842 54344)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17843 45616)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17851 10855)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) -;;;;;; "erc-dcc" "erc/erc-dcc.el" (17843 45616)) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (17851 10855)) ;;; Generated autoloads from erc/erc-dcc.el (autoload (quote erc-cmd-DCC) "erc-dcc" "\ @@ -9264,7 +9242,7 @@ that subcommand. ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ @@ -9326,8 +9304,8 @@ Add EZBouncer convenience functions to ERC. ;;;*** -;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17843 -;;;;;; 45616)) +;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17851 +;;;;;; 10855)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9339,15 +9317,15 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** -;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (17843 -;;;;;; 45616)) +;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (17851 +;;;;;; 10855)) ;;; Generated autoloads from erc/erc-hecomplete.el (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) ;;;*** ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" -;;;;;; "erc/erc-identd.el" (17843 45616)) +;;;;;; "erc/erc-identd.el" (17851 10855)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -9369,7 +9347,7 @@ Not documented ;;;*** ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-imenu.el (autoload (quote erc-create-imenu-index) "erc-imenu" "\ @@ -9379,14 +9357,14 @@ Not documented ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17843 45616)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17851 10855)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" -;;;;;; "erc/erc-log.el" (17843 45616)) +;;;;;; "erc/erc-log.el" (17851 10855)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9418,7 +9396,7 @@ You can save every individual message by putting this function on ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9464,14 +9442,14 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (17843 45616)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (17851 10855)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9483,7 +9461,7 @@ Show who's gone. ;;;*** ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" -;;;;;; "erc/erc-networks.el" (17843 45616)) +;;;;;; "erc/erc-networks.el" (17851 10855)) ;;; Generated autoloads from erc/erc-networks.el (autoload (quote erc-determine-network) "erc-networks" "\ @@ -9501,7 +9479,7 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" -;;;;;; "erc/erc-notify.el" (17843 45616)) +;;;;;; "erc/erc-notify.el" (17851 10855)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9519,33 +9497,33 @@ Not documented ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17843 45616)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17851 10855)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17843 -;;;;;; 45616)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17851 +;;;;;; 10855)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17843 45616)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17851 10855)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17843 45616)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17851 10855)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) -;;;;;; "erc-services" "erc/erc-services.el" (17843 45616)) +;;;;;; "erc-services" "erc/erc-services.el" (17851 10855)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9562,14 +9540,14 @@ When called interactively, read the password using `read-passwd'. ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17843 45616)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17851 10855)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ @@ -9580,20 +9558,20 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17843 -;;;;;; 45616)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17851 +;;;;;; 10855)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17843 45616)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17851 10855)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17843 45616)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17851 10855)) ;;; Generated autoloads from erc/erc-track.el (autoload 'erc-track-mode "erc-track" nil t) (autoload 'erc-track-when-inactive-mode "erc-track" nil t) @@ -9601,7 +9579,7 @@ This will add a speedbar major display mode. ;;;*** ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) -;;;;;; "erc-truncate" "erc/erc-truncate.el" (17843 45616)) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (17851 10855)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9621,7 +9599,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10855)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ @@ -9631,8 +9609,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17843 -;;;;;; 45616)) +;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17851 +;;;;;; 10856)) ;;; Generated autoloads from eshell/esh-mode.el (autoload (quote eshell-mode) "esh-mode" "\ @@ -9644,8 +9622,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17843 -;;;;;; 45616)) +;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17851 +;;;;;; 10856)) ;;; Generated autoloads from eshell/esh-test.el (autoload (quote eshell-test) "esh-test" "\ @@ -9656,7 +9634,7 @@ Test Eshell to verify that it works as expected. ;;;*** ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command -;;;;;; eshell) "eshell" "eshell/eshell.el" (17843 45616)) +;;;;;; eshell) "eshell" "eshell/eshell.el" (17851 10856)) ;;; Generated autoloads from eshell/eshell.el (autoload (quote eshell) "eshell" "\ @@ -9702,7 +9680,7 @@ Please include any configuration details that might be involved. ;;;;;; visit-tags-table tags-table-mode find-tag-default-function ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -10004,7 +9982,7 @@ for \\[find-tag] (which see). ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) -;;;;;; "ethio-util" "language/ethio-util.el" (17843 45620)) +;;;;;; "ethio-util" "language/ethio-util.el" (17851 10861)) ;;; Generated autoloads from language/ethio-util.el (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ @@ -10199,7 +10177,7 @@ Transcribe Ethiopic characters in ASCII depending on the file extension. ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" -;;;;;; (17843 45624)) +;;;;;; (17851 10863)) ;;; Generated autoloads from net/eudc.el (autoload (quote eudc-set-server) "eudc" "\ @@ -10255,7 +10233,7 @@ This does nothing except loading eudc by autoload side-effect. ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) -;;;;;; "eudc-bob" "net/eudc-bob.el" (17843 45624)) +;;;;;; "eudc-bob" "net/eudc-bob.el" (17851 10863)) ;;; Generated autoloads from net/eudc-bob.el (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ @@ -10291,7 +10269,7 @@ Display a button for the JPEG DATA. ;;;*** ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) -;;;;;; "eudc-export" "net/eudc-export.el" (17843 45624)) +;;;;;; "eudc-export" "net/eudc-export.el" (17851 10863)) ;;; Generated autoloads from net/eudc-export.el (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ @@ -10308,7 +10286,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" -;;;;;; (17843 45624)) +;;;;;; (17851 10863)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ @@ -10318,8 +10296,8 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** -;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17851 +;;;;;; 10853)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload (quote ewoc-create) "ewoc" "\ @@ -10348,7 +10326,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p ;;;;;; executable-self-display executable-set-magic executable-interpret ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" -;;;;;; (17843 45627)) +;;;;;; (17851 10867)) ;;; Generated autoloads from progmodes/executable.el (autoload (quote executable-command-find-posix-p) "executable" "\ @@ -10390,7 +10368,7 @@ file modes. ;;;*** ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot -;;;;;; expand-add-abbrevs) "expand" "expand.el" (17843 45610)) +;;;;;; expand-add-abbrevs) "expand" "expand.el" (17851 10827)) ;;; Generated autoloads from expand.el (autoload (quote expand-add-abbrevs) "expand" "\ @@ -10433,7 +10411,7 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17843 45627)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17851 10867)) ;;; Generated autoloads from progmodes/f90.el (autoload (quote f90-mode) "f90" "\ @@ -10500,7 +10478,7 @@ with no args, if that value is non-nil. ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) -;;;;;; "facemenu" "facemenu.el" (17843 45610)) +;;;;;; "facemenu" "facemenu.el" (17851 10827)) ;;; Generated autoloads from facemenu.el (define-key global-map "\M-o" 'facemenu-keymap) (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) @@ -10665,51 +10643,11 @@ argument BUFFER-NAME is nil, it defaults to *Colors*. \(fn &optional LIST BUFFER-NAME)" t nil) -;;;*** - -;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" -;;;;;; "obsolete/fast-lock.el" (17843 45625)) -;;; Generated autoloads from obsolete/fast-lock.el - -(autoload (quote fast-lock-mode) "fast-lock" "\ -Toggle Fast Lock mode. -With arg, turn Fast Lock mode on if and only if arg is positive and the buffer -is associated with a file. Enable it automatically in your `~/.emacs' by: - - (setq font-lock-support-mode 'fast-lock-mode) - -If Fast Lock mode is enabled, and the current buffer does not contain any text -properties, any associated Font Lock cache is used if its timestamp matches the -buffer's file, and its `font-lock-keywords' match those that you are using. - -Font Lock caches may be saved: -- When you save the file's buffer. -- When you kill an unmodified file's buffer. -- When you exit Emacs, for all unmodified or saved buffers. -Depending on the value of `fast-lock-save-events'. -See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'. - -Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. - -Various methods of control are provided for the Font Lock cache. In general, -see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. -For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', -`fast-lock-save-others' and `fast-lock-save-faces'. - -\(fn &optional ARG)" t nil) - -(autoload (quote turn-on-fast-lock) "fast-lock" "\ -Unconditionally turn on Fast Lock mode. - -\(fn)" nil nil) - -(when (fboundp (quote add-minor-mode)) (defvar fast-lock-mode nil) (add-minor-mode (quote fast-lock-mode) nil)) - ;;;*** ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts -;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17743 18143)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17753 42784)) ;;; Generated autoloads from mail/feedmail.el (autoload (quote feedmail-send-it) "feedmail" "\ @@ -10763,7 +10701,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu -;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17838 18033)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17851 10827)) ;;; Generated autoloads from ffap.el (autoload (quote ffap-next) "ffap" "\ @@ -10822,7 +10760,7 @@ Evaluate the forms in variable `ffap-bindings'. ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) -;;;;;; "filecache" "filecache.el" (17843 45610)) +;;;;;; "filecache" "filecache.el" (17851 10827)) ;;; Generated autoloads from filecache.el (autoload (quote file-cache-add-directory) "filecache" "\ @@ -10881,8 +10819,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17851 +;;;;;; 10827)) ;;; Generated autoloads from filesets.el (autoload (quote filesets-init) "filesets" "\ @@ -10893,7 +10831,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "fill" "textmodes/fill.el" (17843 45630)) +;;;### (autoloads nil "fill" "textmodes/fill.el" (17851 10872)) ;;; Generated autoloads from textmodes/fill.el (put 'colon-double-space 'safe-local-variable 'booleanp) @@ -10901,7 +10839,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10827)) ;;; Generated autoloads from find-dired.el (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ @@ -10962,7 +10900,7 @@ Thus ARG can also contain additional grep options. ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10828)) ;;; Generated autoloads from find-file.el (defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2))))) "\ @@ -11056,7 +10994,7 @@ Visit the file you click on in another window. ;;;;;; find-variable find-variable-noselect find-function-other-frame ;;;;;; find-function-other-window find-function find-function-noselect ;;;;;; find-function-search-for-symbol find-library) "find-func" -;;;;;; "emacs-lisp/find-func.el" (17843 45615)) +;;;;;; "emacs-lisp/find-func.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload (quote find-library) "find-func" "\ @@ -11210,7 +11148,7 @@ Define some key bindings for the find-function family of functions. ;;;*** ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories -;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17843 45610)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17851 10828)) ;;; Generated autoloads from find-lisp.el (autoload (quote find-lisp-find-dired) "find-lisp" "\ @@ -11231,7 +11169,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. ;;;*** ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) -;;;;;; "finder" "finder.el" (17843 45610)) +;;;;;; "finder" "finder.el" (17851 10828)) ;;; Generated autoloads from finder.el (autoload (quote finder-list-keywords) "finder" "\ @@ -11253,7 +11191,7 @@ Find packages matching a given keyword. ;;;*** ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" -;;;;;; "flow-ctrl.el" (17843 45610)) +;;;;;; "flow-ctrl.el" (17851 10828)) ;;; Generated autoloads from flow-ctrl.el (autoload (quote enable-flow-control) "flow-ctrl" "\ @@ -11275,7 +11213,7 @@ to get the effect of a C-q. ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10856)) ;;; Generated autoloads from gnus/flow-fill.el (autoload (quote fill-flowed-encode) "flow-fill" "\ @@ -11291,7 +11229,7 @@ Not documented ;;;*** ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) -;;;;;; "flymake" "progmodes/flymake.el" (17843 45627)) +;;;;;; "flymake" "progmodes/flymake.el" (17851 10867)) ;;; Generated autoloads from progmodes/flymake.el (autoload (quote flymake-mode) "flymake" "\ @@ -11315,7 +11253,7 @@ Turn flymake mode off. ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) -;;;;;; "flyspell" "textmodes/flyspell.el" (17843 45630)) +;;;;;; "flyspell" "textmodes/flyspell.el" (17851 10872)) ;;; Generated autoloads from textmodes/flyspell.el (autoload (quote flyspell-prog-mode) "flyspell" "\ @@ -11384,7 +11322,7 @@ Flyspell whole buffer. ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10828)) ;;; Generated autoloads from follow.el (autoload (quote turn-on-follow-mode) "follow" "\ @@ -11458,8 +11396,8 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: ;;;*** -;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17843 -;;;;;; 45621)) +;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17851 +;;;;;; 10861)) ;;; Generated autoloads from mail/footnote.el (autoload (quote footnote-mode) "footnote" "\ @@ -11480,7 +11418,7 @@ key binding ;;;*** ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) -;;;;;; "forms" "forms.el" (17843 45610)) +;;;;;; "forms" "forms.el" (17851 10829)) ;;; Generated autoloads from forms.el (autoload (quote forms-mode) "forms" "\ @@ -11517,7 +11455,7 @@ Visit a file in Forms mode in other window. ;;;*** ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" -;;;;;; "progmodes/fortran.el" (17843 45628)) +;;;;;; "progmodes/fortran.el" (17851 10868)) ;;; Generated autoloads from progmodes/fortran.el (defvar fortran-tab-mode-default nil "\ @@ -11603,7 +11541,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region -;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17843 45625)) +;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17851 10865)) ;;; Generated autoloads from play/fortune.el (autoload (quote fortune-add-fortune) "fortune" "\ @@ -11653,7 +11591,7 @@ and choose the directory as the fortune-file. ;;;*** ;;;### (autoloads (gdb-enable-debug gdba) "gdb-ui" "progmodes/gdb-ui.el" -;;;;;; (17844 62923)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/gdb-ui.el (autoload (quote gdba) "gdb-ui" "\ @@ -11716,8 +11654,8 @@ Non-nil means record the process input and output in `gdb-debug-log'.") ;;;*** ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal -;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17843 -;;;;;; 45615)) +;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17851 +;;;;;; 10853)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11792,7 +11730,7 @@ regular expression that can be used as an element of ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (17843 45628)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/glasses.el (autoload (quote glasses-mode) "glasses" "\ @@ -11805,7 +11743,7 @@ at places they belong to. ;;;*** ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error -;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17843 45616)) +;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17851 10856)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload (quote gmm-message) "gmm-utils" "\ @@ -11852,7 +11790,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17843 45617)) +;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus.el (when (fboundp 'custom-autoload) (custom-autoload 'gnus-select-method "gnus")) @@ -11905,7 +11843,7 @@ prompt the user for the name of an NNTP server to use. ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" -;;;;;; "gnus/gnus-agent.el" (17843 45616)) +;;;;;; "gnus/gnus-agent.el" (17851 10856)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload (quote gnus-unplugged) "gnus-agent" "\ @@ -11996,7 +11934,7 @@ If CLEAN, obsolete (ignore). ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10856)) ;;; Generated autoloads from gnus/gnus-art.el (autoload (quote gnus-article-prepare-display) "gnus-art" "\ @@ -12007,7 +11945,7 @@ Make the current buffer look like a nice article. ;;;*** ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-audio.el (autoload (quote gnus-audio-play) "gnus-audio" "\ @@ -12019,8 +11957,8 @@ Play a sound FILE through the speaker. ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active -;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17843 -;;;;;; 45616)) +;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17851 +;;;;;; 10857)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload (quote gnus-jog-cache) "gnus-cache" "\ @@ -12062,7 +12000,7 @@ supported. ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17843 45616)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload (quote gnus-delay-article) "gnus-delay" "\ @@ -12098,7 +12036,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) -;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17843 45616)) +;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload (quote gnus-user-format-function-d) "gnus-diary" "\ @@ -12114,7 +12052,7 @@ Not documented ;;;*** ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ @@ -12125,7 +12063,7 @@ Convenience method to turn on gnus-dired-mode. ;;;*** ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload (quote gnus-draft-reminder) "gnus-draft" "\ @@ -12137,8 +12075,8 @@ Reminder user if there are unsent drafts. ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header -;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17843 -;;;;;; 45616)) +;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17851 +;;;;;; 10857)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload (quote gnus-random-x-face) "gnus-fun" "\ @@ -12177,7 +12115,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to ;;;*** ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) -;;;;;; "gnus-group" "gnus/gnus-group.el" (17843 45617)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-group.el (autoload (quote gnus-fetch-group) "gnus-group" "\ @@ -12194,7 +12132,7 @@ Pop up a frame and enter GROUP. ;;;*** ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) @@ -12209,7 +12147,7 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ @@ -12234,7 +12172,7 @@ Minor mode for providing mailing-list commands. ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ @@ -12335,7 +12273,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-move.el (autoload (quote gnus-change-server) "gnus-move" "\ @@ -12347,7 +12285,7 @@ Update the .newsrc.eld file to reflect the change of nntp server. ;;;*** ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) -;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17843 45617)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload (quote gnus-msg-mail) "gnus-msg" "\ @@ -12372,7 +12310,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) -;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17843 45617)) +;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-nocem.el (autoload (quote gnus-nocem-scan-groups) "gnus-nocem" "\ @@ -12389,7 +12327,7 @@ Load the NoCeM cache. ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ @@ -12416,7 +12354,7 @@ If picons are already displayed, remove them. ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" -;;;;;; "gnus/gnus-range.el" (17843 45617)) +;;;;;; "gnus/gnus-range.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-range.el (autoload (quote gnus-sorted-difference) "gnus-range" "\ @@ -12484,7 +12422,7 @@ Add NUM into sorted LIST by side effect. ;;;*** ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) -;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17843 45617)) +;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17851 10857)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload (quote gnus-registry-initialize) "gnus-registry" "\ @@ -12500,8 +12438,8 @@ Install the registry hooks. ;;;*** ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate -;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17843 -;;;;;; 45617)) +;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17851 +;;;;;; 10857)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload (quote gnus-sieve-update) "gnus-sieve" "\ @@ -12529,7 +12467,7 @@ Not documented ;;;*** ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-soup.el (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ @@ -12549,7 +12487,7 @@ Note -- this function hasn't been implemented yet. ;;;*** ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload (quote gnus-update-format) "gnus-spec" "\ @@ -12560,8 +12498,8 @@ Update the format specification near point. ;;;*** ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news -;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17843 -;;;;;; 45617)) +;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17851 +;;;;;; 10857)) ;;; Generated autoloads from gnus/gnus-start.el (autoload (quote gnus-declare-backend) "gnus-start" "\ @@ -12577,7 +12515,7 @@ Not documented ;;;*** ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10857)) ;;; Generated autoloads from gnus/gnus-win.el (autoload (quote gnus-add-configuration) "gnus-win" "\ @@ -12587,7 +12525,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17843 45626)) +;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17851 10865)) ;;; Generated autoloads from play/gomoku.el (autoload (quote gomoku) "gomoku" "\ @@ -12614,7 +12552,7 @@ Use \\[describe-mode] for more info. ;;;*** ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" -;;;;;; "net/goto-addr.el" (17843 45624)) +;;;;;; "net/goto-addr.el" (17851 10863)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") @@ -12644,7 +12582,7 @@ Also fontifies the buffer appropriately (see `goto-address-fontify-p' and ;;;### (autoloads (rgrep lgrep grep-find grep grep-mode grep-compute-defaults ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command -;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17843 45628)) +;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17851 10868)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -12781,7 +12719,7 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]. ;;;*** -;;;### (autoloads (gs-load-image) "gs" "gs.el" (17843 45610)) +;;;### (autoloads (gs-load-image) "gs" "gs.el" (17851 10830)) ;;; Generated autoloads from gs.el (autoload (quote gs-load-image) "gs" "\ @@ -12795,7 +12733,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** ;;;### (autoloads (gdb-script-mode bashdb jdb pdb perldb xdb dbx -;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17843 45628)) +;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17851 10868)) ;;; Generated autoloads from progmodes/gud.el (autoload (quote gdb) "gud" "\ @@ -12885,8 +12823,8 @@ Major mode for editing GDB scripts ;;;*** -;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17843 -;;;;;; 45626)) +;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17851 +;;;;;; 10866)) ;;; Generated autoloads from play/handwrite.el (autoload (quote handwrite) "handwrite" "\ @@ -12904,7 +12842,7 @@ Variables: handwrite-linespace (default 12) ;;;*** ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" -;;;;;; (17743 18144)) +;;;;;; (17753 42784)) ;;; Generated autoloads from play/hanoi.el (autoload (quote hanoi) "hanoi" "\ @@ -12934,7 +12872,7 @@ to be updated. ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string -;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17843 45610)) +;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17851 10830)) ;;; Generated autoloads from help-at-pt.el (autoload (quote help-at-pt-string) "help-at-pt" "\ @@ -13064,7 +13002,7 @@ different regions. With numeric argument ARG, behaves like ;;;### (autoloads (describe-categories describe-syntax describe-variable ;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name ;;;;;; help-C-file-name describe-function) "help-fns" "help-fns.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10830)) ;;; Generated autoloads from help-fns.el (autoload (quote describe-function) "help-fns" "\ @@ -13121,7 +13059,7 @@ BUFFER should be a buffer or a buffer name. ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10830)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -13137,7 +13075,7 @@ A value of nil means skip the middle step, so that ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup -;;;;;; help-mode) "help-mode" "help-mode.el" (17843 45610)) +;;;;;; help-mode) "help-mode" "help-mode.el" (17851 10833)) ;;; Generated autoloads from help-mode.el (autoload (quote help-mode) "help-mode" "\ @@ -13220,7 +13158,7 @@ Add xrefs for symbols in `pp's output between FROM and TO. ;;;*** ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" -;;;;;; "emacs-lisp/helper.el" (17843 45615)) +;;;;;; "emacs-lisp/helper.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload (quote Helper-describe-bindings) "helper" "\ @@ -13236,7 +13174,7 @@ Provide help for current mode. ;;;*** ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" -;;;;;; "hexl.el" (17844 62922)) +;;;;;; "hexl.el" (17851 10833)) ;;; Generated autoloads from hexl.el (autoload (quote hexl-mode) "hexl" "\ @@ -13333,7 +13271,7 @@ This discards the buffer's undo information. ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10833)) ;;; Generated autoloads from hi-lock.el (autoload (quote hi-lock-mode) "hi-lock" "\ @@ -13458,7 +13396,7 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially -;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17843 45628)) +;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17851 10868)) ;;; Generated autoloads from progmodes/hideif.el (autoload (quote hide-ifdef-mode) "hideif" "\ @@ -13513,7 +13451,7 @@ how the hiding is done: ;;;*** ;;;### (autoloads (hs-minor-mode) "hideshow" "progmodes/hideshow.el" -;;;;;; (17843 45628)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/hideshow.el (defvar hs-special-modes-alist (quote ((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))) "\ @@ -13571,7 +13509,7 @@ Key bindings: ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces ;;;;;; highlight-changes-previous-change highlight-changes-next-change ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) -;;;;;; "hilit-chg" "hilit-chg.el" (17843 45610)) +;;;;;; "hilit-chg" "hilit-chg.el" (17851 10833)) ;;; Generated autoloads from hilit-chg.el (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ @@ -13701,7 +13639,7 @@ variable `highlight-changes-global-changes-existing-buffers' is non-nil). ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" -;;;;;; "hippie-exp.el" (17843 45610)) +;;;;;; "hippie-exp.el" (17851 10833)) ;;; Generated autoloads from hippie-exp.el (defvar hippie-expand-try-functions-list (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol)) "\ @@ -13774,7 +13712,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10833)) ;;; Generated autoloads from hl-line.el (autoload (quote hl-line-mode) "hl-line" "\ @@ -13815,7 +13753,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from calendar/holidays.el (autoload (quote holidays) "holidays" "\ @@ -13851,35 +13789,8 @@ The optional LABEL is used to label the buffer created. ;;;*** -;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) -;;;;;; "hscroll" "obsolete/hscroll.el" (17843 45625)) -;;; Generated autoloads from obsolete/hscroll.el - -(autoload (quote turn-on-hscroll) "hscroll" "\ -This function is obsolete. -Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. -Also see `automatic-hscrolling'. - -\(fn)" nil nil) - -(autoload (quote hscroll-mode) "hscroll" "\ -This function is obsolete. -Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. -Also see `automatic-hscrolling'. - -\(fn &optional ARG)" t nil) - -(autoload (quote hscroll-global-mode) "hscroll" "\ -This function is obsolete. -Emacs now does hscrolling automatically, if `truncate-lines' is non-nil. -Also see `automatic-hscrolling'. - -\(fn &optional ARG)" t nil) - -;;;*** - -;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17843 -;;;;;; 45617)) +;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17851 +;;;;;; 10857)) ;;; Generated autoloads from gnus/html2text.el (autoload (quote html2text) "html2text" "\ @@ -13911,7 +13822,7 @@ Convert HTML to plain text in the current buffer. ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode -;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17843 45610)) +;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17851 10833)) ;;; Generated autoloads from ibuf-ext.el (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ @@ -14277,8 +14188,8 @@ defaults to one. ;;;*** ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter -;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17843 -;;;;;; 45610)) +;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17851 +;;;;;; 10834)) ;;; Generated autoloads from ibuf-macs.el (autoload (quote define-ibuffer-column) "ibuf-macs" "\ @@ -14367,7 +14278,7 @@ bound to the current value of the filter. ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (17843 45610)) +;;;;;; "ibuffer" "ibuffer.el" (17851 10834)) ;;; Generated autoloads from ibuffer.el (autoload (quote ibuffer-list-buffers) "ibuffer" "\ @@ -14408,7 +14319,7 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;### (autoloads (icalendar-import-buffer icalendar-import-file ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" -;;;;;; "calendar/icalendar.el" (17843 45615)) +;;;;;; "calendar/icalendar.el" (17851 10852)) ;;; Generated autoloads from calendar/icalendar.el (autoload (quote icalendar-export-file) "icalendar" "\ @@ -14460,8 +14371,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17851 +;;;;;; 10834)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14481,7 +14392,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17843 45628)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17851 10868)) ;;; Generated autoloads from progmodes/icon.el (autoload (quote icon-mode) "icon" "\ @@ -14522,7 +14433,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (17843 45628)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload (quote idlwave-shell) "idlw-shell" "\ @@ -14548,7 +14459,7 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (17843 45628)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/idlwave.el (autoload (quote idlwave-mode) "idlwave" "\ @@ -14683,8 +14594,8 @@ The main features of this mode are ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window -;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17845 -;;;;;; 22160)) +;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17851 +;;;;;; 10834)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14945,7 +14856,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads (ielm) "ielm" "ielm.el" (17843 45610)) +;;;### (autoloads (ielm) "ielm" "ielm.el" (17851 10834)) ;;; Generated autoloads from ielm.el (add-hook 'same-window-buffer-names "*ielm*") @@ -14958,7 +14869,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. ;;;*** ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10834)) ;;; Generated autoloads from iimage.el (autoload (quote turn-on-iimage-mode) "iimage" "\ @@ -14977,7 +14888,7 @@ Toggle inline image minor mode. ;;;;;; insert-image put-image create-image image-type-auto-detected-p ;;;;;; image-type-available-p image-type image-type-from-file-name ;;;;;; image-type-from-file-header image-type-from-buffer image-type-from-data) -;;;;;; "image" "image.el" (17843 45610)) +;;;;;; "image" "image.el" (17851 10835)) ;;; Generated autoloads from image.el (autoload (quote image-type-from-data) "image" "\ @@ -15148,7 +15059,7 @@ Example: ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" -;;;;;; "image-file.el" (17843 45610)) +;;;;;; "image-file.el" (17851 10834)) ;;; Generated autoloads from image-file.el (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ @@ -15210,7 +15121,7 @@ Image files are those whose name has an extension in ;;;*** ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) -;;;;;; "image-mode" "image-mode.el" (17843 45610)) +;;;;;; "image-mode" "image-mode.el" (17851 10835)) ;;; Generated autoloads from image-mode.el (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) (push '("\\.png\\'" . image-mode) auto-mode-alist) @@ -15248,7 +15159,7 @@ information on these modes. ;;;*** ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar -;;;;;; imenu-sort-function) "imenu" "imenu.el" (17843 45610)) +;;;;;; imenu-sort-function) "imenu" "imenu.el" (17851 10835)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15363,7 +15274,7 @@ for more information. ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) -;;;;;; "ind-util" "language/ind-util.el" (17843 45620)) +;;;;;; "ind-util" "language/ind-util.el" (17851 10861)) ;;; Generated autoloads from language/ind-util.el (autoload (quote indian-compose-region) "ind-util" "\ @@ -15406,7 +15317,7 @@ See also the function `indian-glyph-char'. ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" -;;;;;; "progmodes/inf-lisp.el" (17843 45628)) +;;;;;; "progmodes/inf-lisp.el" (17851 10868)) ;;; Generated autoloads from progmodes/inf-lisp.el (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ @@ -15473,7 +15384,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node ;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index ;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual -;;;;;; info info-other-window) "info" "info.el" (17843 45610)) +;;;;;; info info-other-window) "info" "info.el" (17851 10835)) ;;; Generated autoloads from info.el (autoload (quote info-other-window) "info" "\ @@ -15639,7 +15550,7 @@ This will add a speedbar major display mode. ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10835)) ;;; Generated autoloads from info-look.el (autoload (quote info-lookup-reset) "info-look" "\ @@ -15687,7 +15598,7 @@ Perform completion on file preceding point. ;;;*** ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all -;;;;;; info-xref-check) "info-xref" "info-xref.el" (17843 45610)) +;;;;;; info-xref-check) "info-xref" "info-xref.el" (17851 10835)) ;;; Generated autoloads from info-xref.el (autoload (quote info-xref-check) "info-xref" "\ @@ -15714,7 +15625,7 @@ quite a while. ;;;*** ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) -;;;;;; "informat" "informat.el" (17843 45610)) +;;;;;; "informat" "informat.el" (17851 10835)) ;;; Generated autoloads from informat.el (autoload (quote Info-tagify) "informat" "\ @@ -15755,7 +15666,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/isearch-x.el (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ @@ -15775,8 +15686,8 @@ Not documented ;;;*** -;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17851 +;;;;;; 10835)) ;;; Generated autoloads from isearchb.el (autoload (quote isearchb-activate) "isearchb" "\ @@ -15787,43 +15698,12 @@ accessed via isearchb. \(fn)" t nil) -;;;*** - -;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el" -;;;;;; (17843 45625)) -;;; Generated autoloads from obsolete/iso-acc.el - -(autoload (quote iso-accents-mode) "iso-acc" "\ -Toggle ISO Accents mode, in which accents modify the following letter. -This permits easy insertion of accented characters according to ISO-8859-1. -When Iso-accents mode is enabled, accent character keys -\(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following -letter key so that it inserts an ISO accented letter. - -You can customize ISO Accents mode to a particular language -with the command `iso-accents-customize'. - -Special combinations: ~c gives a c with cedilla, -~d gives an Icelandic eth (d with dash). -~t gives an Icelandic thorn. -\"s gives German sharp s. -/a gives a with ring. -/e gives an a-e ligature. -~< and ~> give guillemots. -~! gives an inverted exclamation mark. -~? gives an inverted question mark. - -With an argument, a positive argument enables ISO Accents mode, -and a negative argument disables it. - -\(fn &optional ARG)" t nil) - ;;;*** ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" -;;;;;; "international/iso-cvt.el" (17843 45618)) +;;;;;; "international/iso-cvt.el" (17851 10860)) ;;; Generated autoloads from international/iso-cvt.el (autoload (quote iso-spanish) "iso-cvt" "\ @@ -15907,7 +15787,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/iso-transl.el (or key-translation-map (setq key-translation-map (make-sparse-keymap))) (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) @@ -15920,7 +15800,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16208,8 +16088,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17827 -;;;;;; 37446)) +;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17822 +;;;;;; 38984)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -16234,7 +16114,7 @@ This mode enables switching between buffers using substrings. See ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) -;;;;;; "japan-util" "language/japan-util.el" (17843 45620)) +;;;;;; "japan-util" "language/japan-util.el" (17851 10861)) ;;; Generated autoloads from language/japan-util.el (autoload (quote setup-japanese-environment-internal) "japan-util" "\ @@ -16312,7 +16192,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" -;;;;;; "jka-compr.el" (17843 45610)) +;;;;;; "jka-compr.el" (17851 10836)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16337,7 +16217,7 @@ by `jka-compr-installed'. ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" -;;;;;; (17838 18033)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16393,7 +16273,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/kinsoku.el (autoload (quote kinsoku) "kinsoku" "\ @@ -16414,8 +16294,8 @@ the context of text formatting. ;;;*** -;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17843 -;;;;;; 45618)) +;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17851 +;;;;;; 10860)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16440,7 +16320,7 @@ and the return value is the length of the conversion. ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" -;;;;;; "kmacro.el" (17838 18033)) +;;;;;; "kmacro.el" (17851 10836)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16547,7 +16427,7 @@ If kbd macro currently being defined end it before activating it. ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" -;;;;;; (17843 45620)) +;;;;;; (17851 10861)) ;;; Generated autoloads from language/knd-util.el (defconst kannada-consonant "[\x51f75-\x51fb9]") @@ -16570,7 +16450,7 @@ Not documented ;;;*** ;;;### (autoloads (setup-korean-environment-internal) "korea-util" -;;;;;; "language/korea-util.el" (17843 45620)) +;;;;;; "language/korea-util.el" (17851 10861)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ @@ -16585,7 +16465,7 @@ Not documented ;;;*** ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from play/landmark.el (defalias (quote landmark-repeat) (quote lm-test-run)) @@ -16619,8 +16499,8 @@ Use \\[describe-mode] for more info. ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao -;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17843 -;;;;;; 45620)) +;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17851 +;;;;;; 10861)) ;;; Generated autoloads from language/lao-util.el (autoload (quote lao-compose-string) "lao-util" "\ @@ -16669,7 +16549,7 @@ Not documented ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) -;;;;;; "latexenc" "international/latexenc.el" (17843 45618)) +;;;;;; "latexenc" "international/latexenc.el" (17851 10860)) ;;; Generated autoloads from international/latexenc.el (defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ @@ -16701,7 +16581,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) -;;;;;; "latin1-disp" "international/latin1-disp.el" (17843 45619)) +;;;;;; "latin1-disp" "international/latin1-disp.el" (17851 10860)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -16742,78 +16622,10 @@ use either \\[customize] or the function `latin1-display'.") (custom-autoload (quote latin1-display-ucs-per-lynx) "latin1-disp" nil) -;;;*** - -;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" -;;;;;; "obsolete/lazy-lock.el" (17843 45625)) -;;; Generated autoloads from obsolete/lazy-lock.el - -(autoload (quote lazy-lock-mode) "lazy-lock" "\ -Toggle Lazy Lock mode. -With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it -automatically in your `~/.emacs' by: - - (setq font-lock-support-mode 'lazy-lock-mode) - -For a newer font-lock support mode with similar functionality, see -`jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in -JIT Lock's favor. - -When Lazy Lock mode is enabled, fontification can be lazy in a number of ways: - -- Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil. - This means initial fontification does not occur if the buffer is greater than - `lazy-lock-minimum-size' characters in length. Instead, fontification occurs - when necessary, such as when scrolling through the buffer would otherwise - reveal unfontified areas. This is useful if buffer fontification is too slow - for large buffers. - -- Deferred scroll fontification if `lazy-lock-defer-on-scrolling' is non-nil. - This means demand-driven fontification does not occur as you scroll. - Instead, fontification is deferred until after `lazy-lock-defer-time' seconds - of Emacs idle time, while Emacs remains idle. This is useful if - fontification is too slow to keep up with scrolling. - -- Deferred on-the-fly fontification if `lazy-lock-defer-on-the-fly' is non-nil. - This means on-the-fly fontification does not occur as you type. Instead, - fontification is deferred until after `lazy-lock-defer-time' seconds of Emacs - idle time, while Emacs remains idle. This is useful if fontification is too - slow to keep up with your typing. - -- Deferred context fontification if `lazy-lock-defer-contextually' is non-nil. - This means fontification updates the buffer corresponding to true syntactic - context, after `lazy-lock-defer-time' seconds of Emacs idle time, while Emacs - remains idle. Otherwise, fontification occurs on modified lines only, and - subsequent lines can remain fontified corresponding to previous syntactic - contexts. This is useful where strings or comments span lines. - -- Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil. - This means remaining unfontified areas of buffers are fontified if Emacs has - been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle. - This is useful if any buffer has any deferred fontification. - -Basic Font Lock mode on-the-fly fontification behavior fontifies modified -lines only. Thus, if `lazy-lock-defer-contextually' is non-nil, Lazy Lock mode -on-the-fly fontification may fontify differently, albeit correctly. In any -event, to refontify some lines you can use \\[font-lock-fontify-block]. - -Stealth fontification only occurs while the system remains unloaded. -If the system load rises above `lazy-lock-stealth-load' percent, stealth -fontification is suspended. Stealth fontification intensity is controlled via -the variable `lazy-lock-stealth-nice' and `lazy-lock-stealth-lines', and -verbosity is controlled via the variable `lazy-lock-stealth-verbose'. - -\(fn &optional ARG)" t nil) - -(autoload (quote turn-on-lazy-lock) "lazy-lock" "\ -Unconditionally turn on Lazy Lock mode. - -\(fn)" nil nil) - ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (17843 45628)) +;;;;;; (17851 10868)) ;;; Generated autoloads from progmodes/ld-script.el (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) @@ -16828,7 +16640,7 @@ A major mode to edit GNU ld script files ;;;*** ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10837)) ;;; Generated autoloads from ledit.el (defconst ledit-save-files t "\ @@ -16863,7 +16675,7 @@ Not documented ;;;*** -;;;### (autoloads (life) "life" "play/life.el" (17843 45626)) +;;;### (autoloads (life) "life" "play/life.el" (17851 10866)) ;;; Generated autoloads from play/life.el (autoload (quote life) "life" "\ @@ -16876,8 +16688,8 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17851 +;;;;;; 10837)) ;;; Generated autoloads from loadhist.el (autoload (quote unload-feature) "loadhist" "\ @@ -16900,7 +16712,7 @@ such as redefining an Emacs function. ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (17843 45610)) +;;;;;; "locate" "locate.el" (17851 10838)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches "-al" "\ @@ -16947,7 +16759,7 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17843 45610)) +;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17851 10838)) ;;; Generated autoloads from log-edit.el (autoload (quote log-edit) "log-edit" "\ @@ -16968,8 +16780,8 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the ;;;*** -;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from log-view.el (autoload (quote log-view-mode) "log-view" "\ @@ -16979,8 +16791,8 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17843 -;;;;;; 45610)) +;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from longlines.el (autoload (quote longlines-mode) "longlines" "\ @@ -17001,8 +16813,8 @@ are indicated with a symbol. ;;;*** ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer -;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17843 -;;;;;; 45610)) +;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) @@ -17096,7 +16908,7 @@ for further customization of the printer command. ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (17843 45610)) +;;;;;; (17851 10838)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17107,8 +16919,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17851 +;;;;;; 10852)) ;;; Generated autoloads from calendar/lunar.el (autoload (quote phases-of-moon) "lunar" "\ @@ -17121,8 +16933,8 @@ This function is suitable for execution in a .emacs file. ;;;*** -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17843 -;;;;;; 45628)) +;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17851 +;;;;;; 10868)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload (quote m4-mode) "m4-mode" "\ @@ -17134,7 +16946,7 @@ A major mode to edit m4 macro files. ;;;*** ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/macroexp.el (autoload (quote macroexpand-all) "macroexp" "\ @@ -17148,7 +16960,7 @@ definitions to shadow the loaded ones for use in file byte-compilation. ;;;*** ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro -;;;;;; name-last-kbd-macro) "macros" "macros.el" (17843 45611)) +;;;;;; name-last-kbd-macro) "macros" "macros.el" (17851 10838)) ;;; Generated autoloads from macros.el (autoload (quote name-last-kbd-macro) "macros" "\ @@ -17237,7 +17049,7 @@ and then select the region of un-tablified names and use ;;;*** ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" -;;;;;; "mail/mail-extr.el" (17843 45621)) +;;;;;; "mail/mail-extr.el" (17851 10861)) ;;; Generated autoloads from mail/mail-extr.el (autoload (quote mail-extract-address-components) "mail-extr" "\ @@ -17269,7 +17081,7 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" -;;;;;; (17843 45621)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/mail-hist.el (autoload (quote mail-hist-define-keys) "mail-hist" "\ @@ -17300,8 +17112,8 @@ This function normally would be called when the message is sent. ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p -;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17843 -;;;;;; 45621)) +;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17851 +;;;;;; 10862)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17353,7 +17165,7 @@ If 4th arg LIST is non-nil, return a list of all such fields. ;;;*** ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) -;;;;;; "mailabbrev" "mail/mailabbrev.el" (17843 45621)) +;;;;;; "mailabbrev" "mail/mailabbrev.el" (17851 10862)) ;;; Generated autoloads from mail/mailabbrev.el (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ @@ -17376,8 +17188,8 @@ If DEFINITION contains multiple addresses, separate them with commas. ;;;*** ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases -;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17843 -;;;;;; 45621)) +;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17851 +;;;;;; 10862)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style (quote angles) "\ @@ -17423,7 +17235,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (17843 45621)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/mailclient.el (autoload (quote mailclient-send-it) "mailclient" "\ @@ -17437,7 +17249,7 @@ The mail client is taken to be the handler of mailto URLs. ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) -;;;;;; "make-mode" "progmodes/make-mode.el" (17843 45628)) +;;;;;; "make-mode" "progmodes/make-mode.el" (17851 10868)) ;;; Generated autoloads from progmodes/make-mode.el (autoload (quote makefile-mode) "make-mode" "\ @@ -17554,8 +17366,8 @@ An adapted `makefile-mode' that knows about imake. ;;;*** -;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17843 -;;;;;; 45611)) +;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from makesum.el (autoload (quote make-command-summary) "makesum" "\ @@ -17566,7 +17378,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads (man-follow man) "man" "man.el" (17843 45611)) +;;;### (autoloads (man-follow man) "man" "man.el" (17851 10838)) ;;; Generated autoloads from man.el (defalias (quote manual-entry) (quote man)) @@ -17593,7 +17405,7 @@ Get a Un*x manual page of the item under point and put it in a buffer. ;;;*** -;;;### (autoloads (master-mode) "master" "master.el" (17843 45611)) +;;;### (autoloads (master-mode) "master" "master.el" (17851 10838)) ;;; Generated autoloads from master.el (autoload (quote master-mode) "master" "\ @@ -17615,8 +17427,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17843 -;;;;;; 45611)) +;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from menu-bar.el (put (quote menu-bar-mode) (quote standard-value) (quote (t))) @@ -17651,7 +17463,7 @@ turn on menu bars; otherwise, turn off menu bars. ;;;;;; message-cite-function message-yank-prefix message-citation-line-function ;;;;;; message-send-mail-function message-user-organization-file ;;;;;; message-signature-separator message-from-style) "message" -;;;;;; "gnus/message.el" (17843 45617)) +;;;;;; "gnus/message.el" (17851 10858)) ;;; Generated autoloads from gnus/message.el (defvar message-from-style (quote default) "\ @@ -17905,7 +17717,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload (quote metafont-mode) "meta-mode" "\ @@ -17932,7 +17744,7 @@ Turning on MetaPost mode calls the value of the variable ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" -;;;;;; (17843 45621)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/metamail.el (autoload (quote metamail-interpret-header) "metamail" "\ @@ -17977,7 +17789,7 @@ redisplayed as output is inserted. ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" -;;;;;; "mh-e/mh-comp.el" (17843 45622)) +;;;;;; "mh-e/mh-comp.el" (17851 10863)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload (quote mh-smail) "mh-comp" "\ @@ -18064,7 +17876,7 @@ delete the draft message. ;;;*** -;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17843 45622)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17851 10863)) ;;; Generated autoloads from mh-e/mh-e.el (put (quote mh-progs) (quote risky-local-variable) t) @@ -18081,7 +17893,7 @@ Display version information about MH-E and the MH mail handling system. ;;;*** ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" -;;;;;; "mh-e/mh-folder.el" (17843 45622)) +;;;;;; "mh-e/mh-folder.el" (17851 10863)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload (quote mh-rmail) "mh-folder" "\ @@ -18163,7 +17975,7 @@ perform the operation on all messages in that region. ;;;*** ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" -;;;;;; "midnight.el" (17843 45611)) +;;;;;; "midnight.el" (17851 10838)) ;;; Generated autoloads from midnight.el (autoload (quote clean-buffer-list) "midnight" "\ @@ -18190,7 +18002,7 @@ to its second argument TM. ;;;*** ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" -;;;;;; "minibuf-eldef.el" (17843 45611)) +;;;;;; "minibuf-eldef.el" (17851 10838)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18218,7 +18030,7 @@ Returns non-nil if the new state is enabled. ;;;*** ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/mixal-mode.el (autoload (quote mixal-mode) "mixal-mode" "\ @@ -18233,7 +18045,7 @@ Major mode for the mixal asm language. ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" -;;;;;; (17843 45620)) +;;;;;; (17851 10861)) ;;; Generated autoloads from language/mlm-util.el (autoload (quote malayalam-compose-region) "mlm-util" "\ @@ -18256,7 +18068,7 @@ PATTERN regexp. ;;;*** ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) -;;;;;; "mm-extern" "gnus/mm-extern.el" (17843 45617)) +;;;;;; "mm-extern" "gnus/mm-extern.el" (17851 10858)) ;;; Generated autoloads from gnus/mm-extern.el (autoload (quote mm-extern-cache-contents) "mm-extern" "\ @@ -18275,7 +18087,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10858)) ;;; Generated autoloads from gnus/mm-partial.el (autoload (quote mm-inline-partial) "mm-partial" "\ @@ -18289,7 +18101,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) -;;;;;; "mm-url" "gnus/mm-url.el" (17843 45617)) +;;;;;; "mm-url" "gnus/mm-url.el" (17851 10858)) ;;; Generated autoloads from gnus/mm-url.el (autoload (quote mm-url-insert-file-contents) "mm-url" "\ @@ -18306,7 +18118,7 @@ Insert file contents of URL using `mm-url-program'. ;;;*** ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" -;;;;;; "gnus/mm-uu.el" (17843 45617)) +;;;;;; "gnus/mm-uu.el" (17851 10858)) ;;; Generated autoloads from gnus/mm-uu.el (autoload (quote mm-uu-dissect) "mm-uu" "\ @@ -18326,7 +18138,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10858)) ;;; Generated autoloads from gnus/mml1991.el (autoload (quote mml1991-encrypt) "mml1991" "\ @@ -18343,7 +18155,7 @@ Not documented ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) -;;;;;; "mml2015" "gnus/mml2015.el" (17843 45617)) +;;;;;; "mml2015" "gnus/mml2015.el" (17851 10858)) ;;; Generated autoloads from gnus/mml2015.el (autoload (quote mml2015-decrypt) "mml2015" "\ @@ -18384,7 +18196,7 @@ Not documented ;;;*** ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" -;;;;;; (17276 54295)) +;;;;;; (17289 39206)) ;;; Generated autoloads from progmodes/modula2.el (autoload (quote modula-2-mode) "modula2" "\ @@ -18416,7 +18228,7 @@ followed by the first character of the construct. ;;;*** ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" -;;;;;; (17843 45626)) +;;;;;; (17851 10866)) ;;; Generated autoloads from play/morse.el (autoload (quote morse-region) "morse" "\ @@ -18431,8 +18243,8 @@ Convert morse coded text in region to ordinary ASCII text. ;;;*** -;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17843 -;;;;;; 45611)) +;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17851 +;;;;;; 10838)) ;;; Generated autoloads from mouse-sel.el (defvar mouse-sel-mode nil "\ @@ -18484,7 +18296,7 @@ primary selection and region. ;;;*** -;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17843 45626)) +;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17851 10866)) ;;; Generated autoloads from play/mpuz.el (autoload (quote mpuz) "mpuz" "\ @@ -18494,7 +18306,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads (msb-mode) "msb" "msb.el" (17843 45611)) +;;;### (autoloads (msb-mode) "msb" "msb.el" (17851 10838)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18521,7 +18333,7 @@ different buffer menu using the function `msb'. ;;;;;; describe-current-coding-system describe-current-coding-system-briefly ;;;;;; describe-coding-system describe-character-set list-charset-chars ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" -;;;;;; (17843 45619)) +;;;;;; (17851 10860)) ;;; Generated autoloads from international/mule-diag.el (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ @@ -18695,7 +18507,7 @@ system which uses fontsets). ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist ;;;;;; truncate-string-to-width store-substring string-to-sequence) -;;;;;; "mule-util" "international/mule-util.el" (17843 45619)) +;;;;;; "mule-util" "international/mule-util.el" (17851 10860)) ;;; Generated autoloads from international/mule-util.el (autoload (quote string-to-sequence) "mule-util" "\ @@ -18824,7 +18636,7 @@ basis, this may not be accurate. ;;;*** ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" -;;;;;; (17843 45611)) +;;;;;; (17851 10838)) ;;; Generated autoloads from mwheel.el (defvar mouse-wheel-mode nil "\ @@ -18853,7 +18665,7 @@ Enable mouse wheel support. ;;;### (autoloads (network-connection network-connection-to-service ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) -;;;;;; "net-utils" "net/net-utils.el" (17843 45624)) +;;;;;; "net-utils" "net/net-utils.el" (17851 10863)) ;;; Generated autoloads from net/net-utils.el (autoload (quote traceroute) "net-utils" "\ @@ -18949,7 +18761,7 @@ Open a network connection to HOST on PORT. ;;;;;; uncomment-region comment-kill comment-set-column comment-indent ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line ;;;;;; comment-padding comment-style comment-column) "newcomment" -;;;;;; "newcomment.el" (17843 45611)) +;;;;;; "newcomment.el" (17851 10839)) ;;; Generated autoloads from newcomment.el (defalias (quote indent-for-comment) (quote comment-indent)) @@ -19145,7 +18957,7 @@ unless optional argument SOFT is non-nil. ;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start ;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker" -;;;;;; "net/newsticker.el" (17843 45624)) +;;;;;; "net/newsticker.el" (17851 10863)) ;;; Generated autoloads from net/newsticker.el (autoload (quote newsticker-running-p) "newsticker" "\ @@ -19187,7 +18999,7 @@ Switch to newsticker buffer. You may want to bind this to a key. ;;;*** ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10858)) ;;; Generated autoloads from gnus/nndiary.el (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ @@ -19197,8 +19009,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17843 -;;;;;; 45617)) +;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17851 +;;;;;; 10859)) ;;; Generated autoloads from gnus/nndoc.el (autoload (quote nndoc-add-type) "nndoc" "\ @@ -19213,7 +19025,7 @@ symbol in the alist. ;;;*** ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10859)) ;;; Generated autoloads from gnus/nnfolder.el (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ @@ -19225,7 +19037,7 @@ This command does not work if you use short group names. ;;;*** ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10859)) ;;; Generated autoloads from gnus/nnkiboze.el (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ @@ -19237,7 +19049,7 @@ Finds out what articles are to be part of the nnkiboze groups. ;;;*** ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10859)) ;;; Generated autoloads from gnus/nnml.el (autoload (quote nnml-generate-nov-databases) "nnml" "\ @@ -19248,7 +19060,7 @@ Generate NOV databases in all nnml directories. ;;;*** ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) -;;;;;; "nnsoup" "gnus/nnsoup.el" (17843 45617)) +;;;;;; "nnsoup" "gnus/nnsoup.el" (17851 10859)) ;;; Generated autoloads from gnus/nnsoup.el (autoload (quote nnsoup-pack-replies) "nnsoup" "\ @@ -19269,7 +19081,7 @@ Revert posting and mailing methods to the standard Emacs methods. ;;;*** ;;;### (autoloads (disable-command enable-command disabled-command-function) -;;;;;; "novice" "novice.el" (17843 45611)) +;;;;;; "novice" "novice.el" (17851 10839)) ;;; Generated autoloads from novice.el (defvar disabled-command-function (quote disabled-command-function) "\ @@ -19302,7 +19114,7 @@ to future sessions. ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload (quote nroff-mode) "nroff-mode" "\ @@ -19317,7 +19129,7 @@ closing requests for requests that are used in matched pairs. ;;;*** ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/octave-hlp.el (autoload (quote octave-help) "octave-hlp" "\ @@ -19331,7 +19143,7 @@ If KEY is not a string, prompt for it with completion. ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload (quote inferior-octave) "octave-inf" "\ @@ -19354,7 +19166,7 @@ startup file, `~/.emacs-octave'. ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload (quote octave-mode) "octave-mod" "\ @@ -19450,28 +19262,6 @@ including a reproducible test case and send the message. \(fn)" t nil) -;;;*** - -;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el" -;;;;;; (17843 45625)) -;;; Generated autoloads from obsolete/options.el - -(autoload (quote list-options) "options" "\ -Display a list of Emacs user options, with values and documentation. -It is now better to use Customize instead. - -\(fn)" t nil) - -(autoload (quote edit-options) "options" "\ -Edit a list of Emacs user option values. -Selects a buffer containing such a list, -in which there are commands to set the option values. -Type \\[describe-mode] in that buffer for a list of commands. - -The Custom feature is intended to make this obsolete. - -\(fn)" t nil) - ;;;*** ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files @@ -19480,7 +19270,7 @@ The Custom feature is intended to make this obsolete. ;;;;;; org-store-link org-tags-view org-diary org-cycle-agenda-files ;;;;;; org-todo-list org-agenda-list org-batch-agenda org-agenda ;;;;;; org-global-cycle org-cycle org-mode) "org" "textmodes/org.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/org.el (autoload (quote org-mode) "org" "\ @@ -19748,7 +19538,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (17843 45611)) +;;;;;; (17851 10839)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'string-or-null-p) @@ -19804,8 +19594,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17843 -;;;;;; 45630)) +;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17851 +;;;;;; 10872)) ;;; Generated autoloads from textmodes/paragraphs.el (put 'paragraph-start 'safe-local-variable 'stringp) (put 'paragraph-separate 'safe-local-variable 'stringp) @@ -19819,7 +19609,7 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17843 45611)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17851 10839)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -19844,7 +19634,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from calendar/parse-time.el (autoload (quote parse-time-string) "parse-time" "\ @@ -19856,8 +19646,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17843 -;;;;;; 45629)) +;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17851 +;;;;;; 10869)) ;;; Generated autoloads from progmodes/pascal.el (autoload (quote pascal-mode) "pascal" "\ @@ -19910,7 +19700,7 @@ no args, if that value is non-nil. ;;;*** ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emulation/pc-mode.el (autoload (quote pc-bindings-mode) "pc-mode" "\ @@ -19928,7 +19718,7 @@ C-Escape does list-buffers. ;;;*** ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" -;;;;;; "emulation/pc-select.el" (17843 45615)) +;;;;;; "emulation/pc-select.el" (17851 10853)) ;;; Generated autoloads from emulation/pc-select.el (defvar pc-selection-mode nil "\ @@ -20004,8 +19794,8 @@ you must modify it using \\[customize] or \\[pc-selection-mode].") ;;;*** -;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17843 -;;;;;; 45611)) +;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17851 +;;;;;; 10839)) ;;; Generated autoloads from pcmpl-cvs.el (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ @@ -20016,7 +19806,7 @@ Completion rules for the `cvs' command. ;;;*** ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) -;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17843 45611)) +;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17851 10839)) ;;; Generated autoloads from pcmpl-gnu.el (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ @@ -20044,7 +19834,7 @@ Completion for the GNU tar utility. ;;;*** ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) -;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17843 45611)) +;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17851 10839)) ;;; Generated autoloads from pcmpl-linux.el (autoload (quote pcomplete/kill) "pcmpl-linux" "\ @@ -20064,8 +19854,8 @@ Completion for GNU/Linux `mount'. ;;;*** -;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17843 -;;;;;; 45611)) +;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17851 +;;;;;; 10839)) ;;; Generated autoloads from pcmpl-rpm.el (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ @@ -20081,7 +19871,7 @@ You can use \\[eshell-report-bug] to do so. ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) -;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17843 45611)) +;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17851 10839)) ;;; Generated autoloads from pcmpl-unix.el (autoload (quote pcomplete/cd) "pcmpl-unix" "\ @@ -20127,8 +19917,8 @@ Completion for the `chgrp' command. ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete -;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17843 -;;;;;; 45611)) +;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17851 +;;;;;; 10839)) ;;; Generated autoloads from pcomplete.el (autoload (quote pcomplete) "pcomplete" "\ @@ -20187,7 +19977,7 @@ Setup shell-mode to use pcomplete. ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" -;;;;;; "pcvs.el" (17843 45612)) +;;;;;; "pcvs.el" (17851 10840)) ;;; Generated autoloads from pcvs.el (autoload (quote cvs-checkout) "pcvs" "\ @@ -20264,7 +20054,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** -;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17843 45611)) +;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17851 10839)) ;;; Generated autoloads from pcvs-defs.el (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) @@ -20272,7 +20062,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/perl-mode.el (autoload (quote perl-mode) "perl-mode" "\ @@ -20330,7 +20120,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region -;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17843 45612)) +;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17851 10840)) ;;; Generated autoloads from pgg.el (autoload (quote pgg-encrypt-region) "pgg" "\ @@ -20464,7 +20254,7 @@ Import public keys in the current buffer. ;;;*** ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10840)) ;;; Generated autoloads from pgg-gpg.el (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ @@ -20475,7 +20265,7 @@ True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/picture.el (autoload (quote picture-mode) "picture" "\ @@ -20556,7 +20346,7 @@ they are not defaultly assigned to keys. ;;;*** ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/po.el (autoload (quote po-find-file-coding-system) "po" "\ @@ -20567,7 +20357,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads (pong) "pong" "play/pong.el" (17843 45626)) +;;;### (autoloads (pong) "pong" "play/pong.el" (17851 10866)) ;;; Generated autoloads from play/pong.el (autoload (quote pong) "pong" "\ @@ -20584,7 +20374,7 @@ pong-mode keybindings:\\ ;;;*** ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer -;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17843 45615)) +;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload (quote pp-to-string) "pp" "\ @@ -20640,7 +20430,7 @@ Ignores leading comment characters. ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10840)) ;;; Generated autoloads from printing.el (autoload (quote pr-interface) "printing" "\ @@ -21228,7 +21018,7 @@ are both set to t. ;;;*** ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/prolog.el (autoload (quote prolog-mode) "prolog" "\ @@ -21251,7 +21041,7 @@ With prefix argument \\[universal-prefix], prompt for the program to use. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17843 45612)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17851 10840)) ;;; Generated autoloads from ps-bdf.el (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ @@ -21260,8 +21050,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17843 -;;;;;; 45629)) +;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17851 +;;;;;; 10869)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload (quote ps-mode) "ps-mode" "\ @@ -21310,7 +21100,7 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) -;;;;;; "ps-mule" "ps-mule.el" (17843 45612)) +;;;;;; "ps-mule" "ps-mule.el" (17851 10840)) ;;; Generated autoloads from ps-mule.el (defvar ps-multibyte-buffer nil "\ @@ -21431,8 +21221,8 @@ Not documented ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type -;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17843 -;;;;;; 45612)) +;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17851 +;;;;;; 10840)) ;;; Generated autoloads from ps-print.el (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ @@ -21629,7 +21419,7 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/python.el (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) @@ -21704,7 +21494,7 @@ Runs `jython-mode-hook' after `python-mode-hook'. ;;;*** ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10859)) ;;; Generated autoloads from gnus/qp.el (autoload (quote quoted-printable-decode-region) "qp" "\ @@ -21727,7 +21517,7 @@ them into characters should be done separately. ;;;;;; quail-defrule quail-install-decode-map quail-install-map ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout ;;;;;; quail-define-package quail-use-package quail-title) "quail" -;;;;;; "international/quail.el" (17843 45619)) +;;;;;; "international/quail.el" (17851 10861)) ;;; Generated autoloads from international/quail.el (autoload (quote quail-title) "quail" "\ @@ -21958,8 +21748,8 @@ of each directory. ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url -;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17843 -;;;;;; 45624)) +;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17851 +;;;;;; 10864)) ;;; Generated autoloads from net/quickurl.el (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ @@ -22031,7 +21821,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" -;;;;;; "net/rcirc.el" (17843 45624)) +;;;;;; "net/rcirc.el" (17851 10864)) ;;; Generated autoloads from net/rcirc.el (autoload (quote rcirc) "rcirc" "\ @@ -22063,8 +21853,8 @@ Global minor mode for tracking activity in rcirc buffers. ;;;*** -;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17843 -;;;;;; 45624)) +;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17851 +;;;;;; 10864)) ;;; Generated autoloads from net/rcompile.el (autoload (quote remote-compile) "rcompile" "\ @@ -22076,7 +21866,7 @@ See \\[compile]. ;;;*** ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias (quote regexp-builder) (quote re-builder)) @@ -22088,7 +21878,7 @@ Construct a regexp interactively. ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17843 45612)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17851 10841)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22115,8 +21905,8 @@ that were operated on recently. ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle -;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17843 -;;;;;; 45612)) +;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17851 +;;;;;; 10841)) ;;; Generated autoloads from rect.el (autoload (quote move-to-column-force) "rect" "\ @@ -22244,8 +22034,8 @@ rectangle which were empty. ;;;*** -;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17843 -;;;;;; 45630)) +;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17851 +;;;;;; 10872)) ;;; Generated autoloads from textmodes/refill.el (autoload (quote refill-mode) "refill" "\ @@ -22261,7 +22051,7 @@ refilling if they would cause auto-filling. ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17843 45630)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17851 10872)) ;;; Generated autoloads from textmodes/reftex.el (autoload (quote turn-on-reftex) "reftex" "\ @@ -22311,7 +22101,7 @@ This enforces rescanning the buffer on next use. ;;;*** ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload (quote reftex-citation) "reftex-cite" "\ @@ -22341,7 +22131,7 @@ While entering the regexp, completion on knows citation keys is possible. ;;;*** ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ @@ -22358,7 +22148,7 @@ With no argument, this command toggles ;;;*** ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ @@ -22391,7 +22181,7 @@ Here are all local bindings. ;;;*** ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10872)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload (quote reftex-all-document-files) "reftex-parse" "\ @@ -22403,8 +22193,8 @@ of master file. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17843 -;;;;;; 45630)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17851 +;;;;;; 10872)) ;;; Generated autoloads from textmodes/reftex-vars.el (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) @@ -22414,7 +22204,7 @@ of master file. ;;;*** ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload (quote regexp-opt) "regexp-opt" "\ @@ -22441,7 +22231,7 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads (repeat) "repeat" "repeat.el" (17843 45612)) +;;;### (autoloads (repeat) "repeat" "repeat.el" (17851 10841)) ;;; Generated autoloads from repeat.el (autoload (quote repeat) "repeat" "\ @@ -22459,7 +22249,7 @@ can be modified by the global variable `repeat-on-final-keystroke'. ;;;*** ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" -;;;;;; (17843 45622)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/reporter.el (autoload (quote reporter-submit-bug-report) "reporter" "\ @@ -22491,7 +22281,7 @@ mail-sending package is used for editing and sending the message. ;;;*** ;;;### (autoloads (reposition-window) "reposition" "reposition.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10841)) ;;; Generated autoloads from reposition.el (autoload (quote reposition-window) "reposition" "\ @@ -22518,8 +22308,8 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17843 -;;;;;; 45612)) +;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17851 +;;;;;; 10841)) ;;; Generated autoloads from resume.el (autoload (quote resume-suspend-hook) "resume" "\ @@ -22530,7 +22320,7 @@ Clear out the file used for transmitting args when Emacs resumes. ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10841)) ;;; Generated autoloads from reveal.el (autoload (quote reveal-mode) "reveal" "\ @@ -22565,7 +22355,7 @@ With zero or negative ARG turn mode off. ;;;*** ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload (quote ring-p) "ring" "\ @@ -22580,7 +22370,7 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17843 45624)) +;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17851 10864)) ;;; Generated autoloads from net/rlogin.el (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") @@ -22631,8 +22421,8 @@ variable. ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names -;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17843 -;;;;;; 45622)) +;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17851 +;;;;;; 10862)) ;;; Generated autoloads from mail/rmail.el (autoload (quote rmail-movemail-variant-p) "rmail" "\ @@ -22897,7 +22687,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" -;;;;;; (17843 45622)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/rmailedit.el (autoload (quote rmail-edit-current-message) "rmailedit" "\ @@ -22909,7 +22699,7 @@ Edit the contents of this message. ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" -;;;;;; "mail/rmailkwd.el" (17843 45622)) +;;;;;; "mail/rmailkwd.el" (17851 10862)) ;;; Generated autoloads from mail/rmailkwd.el (autoload (quote rmail-add-label) "rmailkwd" "\ @@ -22948,7 +22738,7 @@ With prefix argument N moves forward N messages with these labels. ;;;*** ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" -;;;;;; (17843 45622)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/rmailmsc.el (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ @@ -22962,7 +22752,7 @@ If FILE-NAME is empty, remove any existing inbox list. ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" -;;;;;; "mail/rmailout.el" (17843 45622)) +;;;;;; "mail/rmailout.el" (17851 10862)) ;;; Generated autoloads from mail/rmailout.el (defvar rmail-output-file-alist nil "\ @@ -23029,8 +22819,8 @@ FILE-NAME defaults, interactively, from the Subject field of the message. ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject -;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17843 -;;;;;; 45622)) +;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17851 +;;;;;; 10862)) ;;; Generated autoloads from mail/rmailsort.el (autoload (quote rmail-sort-by-date) "rmailsort" "\ @@ -23082,7 +22872,7 @@ KEYWORDS is a comma-separated list of labels. ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) -;;;;;; "rmailsum" "mail/rmailsum.el" (17843 45622)) +;;;;;; "rmailsum" "mail/rmailsum.el" (17851 10862)) ;;; Generated autoloads from mail/rmailsum.el (defvar rmail-summary-scroll-between-messages t "\ @@ -23161,23 +22951,10 @@ Setting this variable has an effect only before reading a mail.") (custom-autoload (quote rmail-user-mail-address-regexp) "rmailsum" t) -;;;*** - -;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el" -;;;;;; (17843 45625)) -;;; Generated autoloads from obsolete/rnewspost.el - -(autoload (quote news-post-news) "rnewspost" "\ -Begin editing a new USENET news article to be posted. -Type \\[describe-mode] once editing the article to get a list of commands. -If NOQUERY is non-nil, we do not query before doing the work. - -\(fn &optional NOQUERY)" t nil) - ;;;*** ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region -;;;;;; rot13-string rot13) "rot13" "rot13.el" (17843 45612)) +;;;;;; rot13-string rot13) "rot13" "rot13.el" (17851 10841)) ;;; Generated autoloads from rot13.el (autoload (quote rot13) "rot13" "\ @@ -23214,52 +22991,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads (resize-minibuffer-mode resize-minibuffer-frame-exactly -;;;;;; resize-minibuffer-frame-max-height resize-minibuffer-frame -;;;;;; resize-minibuffer-window-exactly resize-minibuffer-window-max-height -;;;;;; resize-minibuffer-mode) "rsz-mini" "obsolete/rsz-mini.el" -;;;;;; (17843 45625)) -;;; Generated autoloads from obsolete/rsz-mini.el - -(defvar resize-minibuffer-mode nil "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-mode) "rsz-mini" t) - -(defvar resize-minibuffer-window-max-height nil "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-window-max-height) "rsz-mini" t) - -(defvar resize-minibuffer-window-exactly t "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-window-exactly) "rsz-mini" t) - -(defvar resize-minibuffer-frame nil "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-frame) "rsz-mini" t) - -(defvar resize-minibuffer-frame-max-height nil "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-frame-max-height) "rsz-mini" t) - -(defvar resize-minibuffer-frame-exactly t "\ -*This variable is obsolete.") - -(custom-autoload (quote resize-minibuffer-frame-exactly) "rsz-mini" t) - -(autoload (quote resize-minibuffer-mode) "rsz-mini" "\ -This function is obsolete. - -\(fn &optional PREFIX)" t nil) - -;;;*** - -;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17838 -;;;;;; 18033)) +;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17851 +;;;;;; 10841)) ;;; Generated autoloads from ruler-mode.el (autoload (quote ruler-mode) "ruler-mode" "\ @@ -23269,8 +23002,8 @@ Display a ruler in the header line if ARG > 0. ;;;*** -;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17851 +;;;;;; 10853)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload (quote rx-to-string) "rx" "\ @@ -23578,7 +23311,7 @@ enclosed in `(and ...)'. ;;;*** ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10841)) ;;; Generated autoloads from savehist.el (defvar savehist-mode nil "\ @@ -23604,7 +23337,7 @@ which is probably undesirable. ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10869)) ;;; Generated autoloads from progmodes/scheme.el (autoload (quote scheme-mode) "scheme" "\ @@ -23646,7 +23379,7 @@ that variable's value is a string. ;;;*** ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10859)) ;;; Generated autoloads from gnus/score-mode.el (autoload (quote gnus-score-mode) "score-mode" "\ @@ -23657,35 +23390,10 @@ This mode is an extended emacs-lisp mode. \(fn)" t nil) -;;;*** - -;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17843 -;;;;;; 45625)) -;;; Generated autoloads from obsolete/scribe.el - -(autoload (quote scribe-mode) "scribe" "\ -Major mode for editing files of Scribe (a text formatter) source. -Scribe-mode is similar to text-mode, with a few extra commands added. -\\{scribe-mode-map} - -Interesting variables: - -`scribe-fancy-paragraphs' - Non-nil makes Scribe mode use a different style of paragraph separation. - -`scribe-electric-quote' - Non-nil makes insert of double quote use `` or '' depending on context. - -`scribe-electric-parenthesis' - Non-nil makes an open-parenthesis char (one of `([<{') - automatically insert its close if typed after an @Command form. - -\(fn)" t nil) - ;;;*** ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10841)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -23708,7 +23416,7 @@ apply to all visible windows in the same frame. ;;;*** ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10842)) ;;; Generated autoloads from scroll-lock.el (autoload (quote scroll-lock-mode) "scroll-lock" "\ @@ -23730,7 +23438,7 @@ during scrolling. ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name ;;;;;; mail-header-separator send-mail-function mail-interactive ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) -;;;;;; "sendmail" "mail/sendmail.el" (17843 45622)) +;;;;;; "sendmail" "mail/sendmail.el" (17851 10862)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style (quote angles) "\ @@ -24031,7 +23739,7 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** ;;;### (autoloads (server-mode server-start) "server" "server.el" -;;;;;; (17838 18033)) +;;;;;; (17851 10842)) ;;; Generated autoloads from server.el (autoload (quote server-start) "server" "\ @@ -24064,7 +23772,7 @@ Server mode runs a process that accepts commands from the ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (17843 45612)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (17851 10843)) ;;; Generated autoloads from ses.el (autoload (quote ses-mode) "ses" "\ @@ -24083,7 +23791,7 @@ These are active only in the minibuffer, when entering or editing a formula: ;;;*** ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10873)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload (quote sgml-mode) "sgml-mode" "\ @@ -24151,7 +23859,7 @@ To work around that, do: ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10870)) ;;; Generated autoloads from progmodes/sh-script.el (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24215,7 +23923,7 @@ with your script for an edit-interpret-debug cycle. ;;;*** -;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17843 45617)) +;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17851 10859)) ;;; Generated autoloads from gnus/sha1.el (autoload (quote sha1) "sha1" "\ @@ -24230,7 +23938,7 @@ If BINARY is non-nil, return a string in binary form. ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload (quote list-load-path-shadows) "shadow" "\ @@ -24277,8 +23985,8 @@ buffer called `*Shadows*'. Shadowings are located by calling the ;;;*** ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group -;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17843 -;;;;;; 45612)) +;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17851 +;;;;;; 10843)) ;;; Generated autoloads from shadowfile.el (autoload (quote shadow-define-cluster) "shadowfile" "\ @@ -24317,7 +24025,7 @@ Set up file shadowing. ;;;*** ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10843)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ @@ -24364,7 +24072,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) -;;;;;; "sieve" "gnus/sieve.el" (17843 45617)) +;;;;;; "sieve" "gnus/sieve.el" (17851 10860)) ;;; Generated autoloads from gnus/sieve.el (autoload (quote sieve-manage) "sieve" "\ @@ -24385,7 +24093,7 @@ Not documented ;;;*** ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10860)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload (quote sieve-mode) "sieve-mode" "\ @@ -24400,14 +24108,14 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simple" "simple.el" (17843 45612)) +;;;### (autoloads nil "simple" "simple.el" (17851 10843)) ;;; Generated autoloads from simple.el (put 'fill-prefix 'safe-local-variable 'string-or-null-p) ;;;*** -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17843 -;;;;;; 45629)) +;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17851 +;;;;;; 10870)) ;;; Generated autoloads from progmodes/simula.el (autoload (quote simula-mode) "simula" "\ @@ -24456,7 +24164,7 @@ with no arguments, if that value is non-nil. ;;;*** ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new -;;;;;; define-skeleton) "skeleton" "skeleton.el" (17843 45612)) +;;;;;; define-skeleton) "skeleton" "skeleton.el" (17851 10843)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function (quote identity) "\ @@ -24566,7 +24274,7 @@ symmetrical ones, and the same character twice for the others. ;;;*** ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10844)) ;;; Generated autoloads from smerge-mode.el (autoload (quote smerge-ediff) "smerge-mode" "\ @@ -24585,7 +24293,7 @@ Minor mode to simplify editing output from the diff3 program. ;;;*** ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" -;;;;;; (17843 45617)) +;;;;;; (17851 10860)) ;;; Generated autoloads from gnus/smiley.el (autoload (quote smiley-region) "smiley" "\ @@ -24603,7 +24311,7 @@ interactively. If there's no argument, do it at the current buffer ;;;*** ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" -;;;;;; "mail/smtpmail.el" (17843 45622)) +;;;;;; "mail/smtpmail.el" (17851 10862)) ;;; Generated autoloads from mail/smtpmail.el (autoload (quote smtpmail-send-it) "smtpmail" "\ @@ -24618,7 +24326,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads (snake) "snake" "play/snake.el" (17843 45626)) +;;;### (autoloads (snake) "snake" "play/snake.el" (17851 10866)) ;;; Generated autoloads from play/snake.el (autoload (quote snake) "snake" "\ @@ -24642,7 +24350,7 @@ Snake mode keybindings: ;;;*** ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" -;;;;;; (17843 45624)) +;;;;;; (17851 10864)) ;;; Generated autoloads from net/snmp-mode.el (autoload (quote snmp-mode) "snmp-mode" "\ @@ -24673,7 +24381,7 @@ then `snmpv2-mode-hook'. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) -;;;;;; "solar" "calendar/solar.el" (17843 45615)) +;;;;;; "solar" "calendar/solar.el" (17851 10852)) ;;; Generated autoloads from calendar/solar.el (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ @@ -24744,8 +24452,8 @@ Requires floating point. ;;;*** -;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17843 -;;;;;; 45626)) +;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17851 +;;;;;; 10866)) ;;; Generated autoloads from play/solitaire.el (autoload (quote solitaire) "solitaire" "\ @@ -24822,7 +24530,7 @@ Pick your favourite shortcuts: ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs -;;;;;; sort-lines sort-subr) "sort" "sort.el" (17843 45612)) +;;;;;; sort-lines sort-subr) "sort" "sort.el" (17851 10844)) ;;; Generated autoloads from sort.el (autoload (quote sort-subr) "sort" "\ @@ -24964,8 +24672,8 @@ From a program takes two point or marker arguments, BEG and END. ;;;*** -;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17843 -;;;;;; 45617)) +;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17851 +;;;;;; 10860)) ;;; Generated autoloads from gnus/spam.el (autoload (quote spam-initialize) "spam" "\ @@ -24977,7 +24685,7 @@ Install the spam.el hooks and do other initialization ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" -;;;;;; "gnus/spam-report.el" (17843 45617)) +;;;;;; "gnus/spam-report.el" (17851 10860)) ;;; Generated autoloads from gnus/spam-report.el (autoload (quote spam-report-process-queue) "spam-report" "\ @@ -25020,7 +24728,7 @@ Spam reports will be queued with the method used when ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (17843 45612)) +;;;;;; "speedbar.el" (17851 10844)) ;;; Generated autoloads from speedbar.el (defalias (quote speedbar) (quote speedbar-frame-mode)) @@ -25045,7 +24753,7 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) -;;;;;; "spell" "textmodes/spell.el" (17843 45630)) +;;;;;; "spell" "textmodes/spell.el" (17851 10873)) ;;; Generated autoloads from textmodes/spell.el (put (quote spell-filter) (quote risky-local-variable) t) @@ -25081,8 +24789,8 @@ Check spelling of string supplied as argument. ;;;*** -;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17843 -;;;;;; 45626)) +;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17851 +;;;;;; 10866)) ;;; Generated autoloads from play/spook.el (autoload (quote spook) "spook" "\ @@ -25100,8 +24808,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help -;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17843 -;;;;;; 45629)) +;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17851 +;;;;;; 10870)) ;;; Generated autoloads from progmodes/sql.el (autoload (quote sql-add-product-keywords) "sql" "\ @@ -25532,8 +25240,8 @@ input. See `sql-interactive-mode'. ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke -;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17843 -;;;;;; 45612)) +;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17851 +;;;;;; 10844)) ;;; Generated autoloads from strokes.el (autoload (quote strokes-global-set-stroke) "strokes" "\ @@ -25643,7 +25351,7 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** ;;;### (autoloads (studlify-buffer studlify-word studlify-region) -;;;;;; "studly" "play/studly.el" (17075 55479)) +;;;;;; "studly" "play/studly.el" (16211 27038)) ;;; Generated autoloads from play/studly.el (autoload (quote studlify-region) "studly" "\ @@ -25663,7 +25371,7 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads (locate-library) "subr" "subr.el" (17843 45612)) +;;;### (autoloads (locate-library) "subr" "subr.el" (17851 10844)) ;;; Generated autoloads from subr.el (autoload (quote locate-library) "subr" "\ @@ -25685,7 +25393,7 @@ and the file name is displayed in the echo area. ;;;*** ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" -;;;;;; (17843 45622)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/supercite.el (autoload (quote sc-cite-original) "supercite" "\ @@ -25717,7 +25425,7 @@ before, and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17842 25773)) +;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17851 10844)) ;;; Generated autoloads from t-mouse.el (defvar t-mouse-mode nil "\ @@ -25739,7 +25447,7 @@ Turn it on to use Emacs mouse commands, and off to use t-mouse commands. ;;;*** -;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17843 45612)) +;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17851 10844)) ;;; Generated autoloads from tabify.el (autoload (quote untabify) "tabify" "\ @@ -25774,7 +25482,7 @@ The variable `tab-width' controls the spacing of tab stops. ;;;;;; table-recognize table-insert-row-column table-insert-column ;;;;;; table-insert-row table-insert table-point-left-cell-hook ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) -;;;;;; "table" "textmodes/table.el" (17843 45630)) +;;;;;; "table" "textmodes/table.el" (17851 10873)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ @@ -26362,7 +26070,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads (talk-connect) "talk" "talk.el" (17843 45612)) +;;;### (autoloads (talk-connect) "talk" "talk.el" (17851 10845)) ;;; Generated autoloads from talk.el (autoload (quote talk-connect) "talk" "\ @@ -26372,7 +26080,7 @@ Connect to display DISPLAY for the Emacs talk group. ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17843 45612)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17851 10845)) ;;; Generated autoloads from tar-mode.el (autoload (quote tar-mode) "tar-mode" "\ @@ -26396,7 +26104,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (17843 45629)) +;;;;;; "progmodes/tcl.el" (17851 10870)) ;;; Generated autoloads from progmodes/tcl.el (autoload (quote tcl-mode) "tcl" "\ @@ -26447,7 +26155,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17843 45624)) +;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17851 10864)) ;;; Generated autoloads from net/telnet.el (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") @@ -26474,8 +26182,8 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17843 -;;;;;; 45612)) +;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17851 +;;;;;; 10845)) ;;; Generated autoloads from term.el (autoload (quote make-term) "term" "\ @@ -26503,8 +26211,8 @@ Start a terminal-emulator in a new buffer. ;;;*** -;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17843 -;;;;;; 45612)) +;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17851 +;;;;;; 10845)) ;;; Generated autoloads from terminal.el (autoload (quote terminal-emulator) "terminal" "\ @@ -26541,7 +26249,7 @@ subprocess started. ;;;*** ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload (quote testcover-this-defun) "testcover" "\ @@ -26551,7 +26259,7 @@ Start coverage on function under point. ;;;*** -;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17843 45626)) +;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17851 10866)) ;;; Generated autoloads from play/tetris.el (autoload (quote tetris) "tetris" "\ @@ -26582,7 +26290,7 @@ tetris-mode keybindings: ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10873)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -26884,7 +26592,7 @@ Major mode to edit DocTeX files. ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (17843 45630)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (17851 10873)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload (quote texinfo-format-buffer) "texinfmt" "\ @@ -26924,7 +26632,7 @@ if large. You can use Info-split to do this manually. ;;;*** ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) -;;;;;; "texinfo" "textmodes/texinfo.el" (17843 45630)) +;;;;;; "texinfo" "textmodes/texinfo.el" (17851 10873)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote "``" "\ @@ -27011,7 +26719,7 @@ value of `texinfo-mode-hook'. ;;;### (autoloads (thai-auto-composition-mode thai-composition-function ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" -;;;;;; (17843 45621)) +;;;;;; (17851 10861)) ;;; Generated autoloads from language/thai-util.el (autoload (quote thai-compose-region) "thai-util" "\ @@ -27055,7 +26763,7 @@ Minor mode for automatically correct Thai character composition. ;;;### (autoloads (list-at-point number-at-point symbol-at-point ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) -;;;;;; "thingatpt" "thingatpt.el" (17843 45612)) +;;;;;; "thingatpt" "thingatpt.el" (17851 10845)) ;;; Generated autoloads from thingatpt.el (autoload (quote forward-thing) "thingatpt" "\ @@ -27112,7 +26820,7 @@ Not documented ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10845)) ;;; Generated autoloads from thumbs.el (autoload (quote thumbs-find-thumb) "thumbs" "\ @@ -27151,7 +26859,7 @@ In dired, call the setroot program on the image at point. ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" -;;;;;; "language/tibet-util.el" (17843 45621)) +;;;;;; "language/tibet-util.el" (17851 10861)) ;;; Generated autoloads from language/tibet-util.el (autoload (quote tibetan-char-p) "tibet-util" "\ @@ -27230,7 +26938,7 @@ Not documented ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10873)) ;;; Generated autoloads from textmodes/tildify.el (autoload (quote tildify-region) "tildify" "\ @@ -27254,7 +26962,7 @@ This function performs no refilling of the changed text. ;;;*** ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (17843 45612)) +;;;;;; "time" "time.el" (17851 10845)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -27296,8 +27004,8 @@ This runs the normal hook `display-time-hook' after each update. ;;;### (autoloads (safe-date-to-time time-to-days time-to-day-in-year ;;;;;; date-leap-year-p days-between date-to-day time-add time-subtract ;;;;;; time-since days-to-time time-less-p seconds-to-time time-to-seconds -;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17843 -;;;;;; 45615)) +;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17851 +;;;;;; 10852)) ;;; Generated autoloads from calendar/time-date.el (autoload (quote date-to-time) "time-date" "\ @@ -27383,7 +27091,7 @@ If DATE is malformed, return a time value of zeros. ;;;*** ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" -;;;;;; "time-stamp.el" (17843 45612)) +;;;;;; "time-stamp.el" (17851 10845)) ;;; Generated autoloads from time-stamp.el (put 'time-stamp-format 'safe-local-variable 'stringp) (put 'time-stamp-line-limit 'safe-local-variable 'integerp) @@ -27426,7 +27134,7 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10852)) ;;; Generated autoloads from calendar/timeclock.el (autoload (quote timeclock-modeline-display) "timeclock" "\ @@ -27527,7 +27235,7 @@ relative only to the time worked today, and not to past time. ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" -;;;;;; "emacs-lisp/timer.el" (17843 45615)) +;;;;;; "emacs-lisp/timer.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/timer.el (defalias (quote disable-timeout) (quote cancel-timer)) @@ -27603,7 +27311,7 @@ be detected. ;;;*** ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" -;;;;;; "international/titdic-cnv.el" (17843 45620)) +;;;;;; "international/titdic-cnv.el" (17851 10861)) ;;; Generated autoloads from international/titdic-cnv.el (autoload (quote titdic-convert) "titdic-cnv" "\ @@ -27626,8 +27334,8 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion -;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17843 -;;;;;; 45621)) +;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17851 +;;;;;; 10861)) ;;; Generated autoloads from language/tml-util.el (autoload (quote tamil-compose-region) "tml-util" "\ @@ -27650,7 +27358,7 @@ PATTERN regexp. ;;;*** ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" -;;;;;; "tmm.el" (17843 45612)) +;;;;;; "tmm.el" (17851 10845)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [f10] 'tmm-menubar) @@ -27691,7 +27399,7 @@ Its value should be an event that has a binding in MENU. ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) -;;;;;; "todo-mode" "calendar/todo-mode.el" (17843 45615)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (17851 10852)) ;;; Generated autoloads from calendar/todo-mode.el (autoload (quote todo-add-category) "todo-mode" "\ @@ -27752,7 +27460,7 @@ Show TODO list. ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu ;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10845)) ;;; Generated autoloads from tool-bar.el (put (quote tool-bar-mode) (quote standard-value) (quote (t))) @@ -27819,7 +27527,7 @@ holds a keymap. ;;;*** ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emulation/tpu-edt.el (defvar tpu-edt-mode nil "\ @@ -27846,7 +27554,7 @@ Turn on TPU/edt emulation. ;;;*** ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) -;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17843 45615)) +;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17851 10853)) ;;; Generated autoloads from emulation/tpu-extras.el (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ @@ -27866,7 +27574,7 @@ Constrain the cursor to the flow of the text. ;;;*** -;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17843 45615)) +;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload (quote tq-create) "tq" "\ @@ -27880,7 +27588,7 @@ to a tcp server on another machine. ;;;*** ;;;### (autoloads (trace-function-background trace-function trace-buffer) -;;;;;; "trace" "emacs-lisp/trace.el" (17843 45615)) +;;;;;; "trace" "emacs-lisp/trace.el" (17851 10853)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -27917,7 +27625,7 @@ BUFFER defaults to `trace-buffer'. ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers ;;;;;; tramp-file-name-handler tramp-completion-file-name-regexp -;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17844 62922)) +;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17851 10865)) ;;; Generated autoloads from net/tramp.el (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ @@ -28030,7 +27738,7 @@ Discard Tramp from loading remote files. ;;;*** ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" -;;;;;; (17843 45624)) +;;;;;; (17851 10864)) ;;; Generated autoloads from net/tramp-ftp.el (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ @@ -28045,8 +27753,8 @@ Not documented ;;;;;; tumme-display-thumb tumme-display-thumbs-append tumme-setup-dired-keybindings ;;;;;; tumme-jump-thumbnail-buffer tumme-delete-tag tumme-tag-files ;;;;;; tumme-show-all-from-dir tumme-display-thumbs tumme-dired-with-window-configuration -;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17843 -;;;;;; 45612)) +;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17851 +;;;;;; 10847)) ;;; Generated autoloads from tumme.el (autoload (quote tumme-dired-insert-marked-thumbs) "tumme" "\ @@ -28176,8 +27884,8 @@ easy-to-use form. ;;;*** -;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (17843 -;;;;;; 45612)) +;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (17851 +;;;;;; 10847)) ;;; Generated autoloads from tutorial.el (autoload (quote help-with-tutorial) "tutorial" "\ @@ -28202,7 +27910,7 @@ resumed later. ;;;*** ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" -;;;;;; "textmodes/two-column.el" (17843 45630)) +;;;;;; "textmodes/two-column.el" (17851 10873)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28253,7 +27961,7 @@ First column's text sSs Second column's text ;;;;;; type-break type-break-mode type-break-keystroke-threshold ;;;;;; type-break-good-break-interval type-break-good-rest-interval ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" -;;;;;; (17845 22175)) +;;;;;; (17851 10847)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28436,7 +28144,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** ;;;### (autoloads (ununderline-region underline-region) "underline" -;;;;;; "textmodes/underline.el" (17843 45630)) +;;;;;; "textmodes/underline.el" (17851 10873)) ;;; Generated autoloads from textmodes/underline.el (autoload (quote underline-region) "underline" "\ @@ -28457,7 +28165,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) -;;;;;; "undigest" "mail/undigest.el" (17843 45622)) +;;;;;; "undigest" "mail/undigest.el" (17851 10862)) ;;; Generated autoloads from mail/undigest.el (autoload (quote undigestify-rmail-message) "undigest" "\ @@ -28476,7 +28184,7 @@ following the containing message. ;;;*** ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" -;;;;;; (17843 45622)) +;;;;;; (17851 10862)) ;;; Generated autoloads from mail/unrmail.el (autoload (quote batch-unrmail) "unrmail" "\ @@ -28495,8 +28203,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. ;;;*** -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17851 +;;;;;; 10853)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload (quote unsafep) "unsafep" "\ @@ -28509,7 +28217,7 @@ of symbols with local bindings. ;;;*** ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" -;;;;;; "url/url.el" (17843 45630)) +;;;;;; "url/url.el" (17851 10875)) ;;; Generated autoloads from url/url.el (autoload (quote url-retrieve) "url" "\ @@ -28549,7 +28257,7 @@ no further processing). URL is either a string or a parsed URL. ;;;*** ;;;### (autoloads (url-register-auth-scheme url-get-authentication) -;;;;;; "url-auth" "url/url-auth.el" (17843 45630)) +;;;;;; "url-auth" "url/url-auth.el" (17851 10873)) ;;; Generated autoloads from url/url-auth.el (autoload (quote url-get-authentication) "url-auth" "\ @@ -28591,8 +28299,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached -;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17843 -;;;;;; 45630)) +;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17851 +;;;;;; 10873)) ;;; Generated autoloads from url/url-cache.el (autoload (quote url-store-in-cache) "url-cache" "\ @@ -28617,7 +28325,7 @@ Return t iff a cached file has expired. ;;;*** -;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17843 45630)) +;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17851 10873)) ;;; Generated autoloads from url/url-cid.el (autoload (quote url-cid) "url-cid" "\ @@ -28628,7 +28336,7 @@ Not documented ;;;*** ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" -;;;;;; "url/url-dav.el" (17843 45630)) +;;;;;; "url/url-dav.el" (17851 10873)) ;;; Generated autoloads from url/url-dav.el (autoload (quote url-dav-supported-p) "url-dav" "\ @@ -28643,8 +28351,8 @@ Not documented ;;;*** -;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17843 -;;;;;; 45630)) +;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17851 +;;;;;; 10873)) ;;; Generated autoloads from url/url-file.el (autoload (quote url-file) "url-file" "\ @@ -28655,7 +28363,7 @@ Handle file: and ftp: URLs. ;;;*** ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" -;;;;;; "url/url-gw.el" (17843 45630)) +;;;;;; "url/url-gw.el" (17851 10873)) ;;; Generated autoloads from url/url-gw.el (autoload (quote url-gateway-nslookup-host) "url-gw" "\ @@ -28674,8 +28382,8 @@ Might do a non-blocking connection; use `process-status' to check. ;;;*** ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file -;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17843 -;;;;;; 45630)) +;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17851 +;;;;;; 10873)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -28719,7 +28427,7 @@ Not documented ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (17843 45630)) +;;;;;; url-http) "url-http" "url/url-http.el" (17851 10873)) ;;; Generated autoloads from url/url-http.el (autoload (quote url-http) "url-http" "\ @@ -28784,7 +28492,7 @@ HTTPS retrievals are asynchronous.") ;;;*** -;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17843 45630)) +;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17851 10873)) ;;; Generated autoloads from url/url-irc.el (autoload (quote url-irc) "url-irc" "\ @@ -28794,8 +28502,8 @@ Not documented ;;;*** -;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17843 -;;;;;; 45630)) +;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17851 +;;;;;; 10873)) ;;; Generated autoloads from url/url-ldap.el (autoload (quote url-ldap) "url-ldap" "\ @@ -28809,7 +28517,7 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10874)) ;;; Generated autoloads from url/url-mailto.el (autoload (quote url-mail) "url-mailto" "\ @@ -28825,7 +28533,7 @@ Handle the mailto: URL syntax. ;;;*** ;;;### (autoloads (url-data url-generic-emulator-loader url-info -;;;;;; url-man) "url-misc" "url/url-misc.el" (17843 45630)) +;;;;;; url-man) "url-misc" "url/url-misc.el" (17851 10874)) ;;; Generated autoloads from url/url-misc.el (autoload (quote url-man) "url-misc" "\ @@ -28857,7 +28565,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10874)) ;;; Generated autoloads from url/url-news.el (autoload (quote url-news) "url-news" "\ @@ -28874,7 +28582,7 @@ Not documented ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10874)) ;;; Generated autoloads from url/url-ns.el (autoload (quote isPlainHostName) "url-ns" "\ @@ -28915,7 +28623,7 @@ Not documented ;;;*** ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" -;;;;;; "url/url-parse.el" (17843 45630)) +;;;;;; "url/url-parse.el" (17851 10874)) ;;; Generated autoloads from url/url-parse.el (autoload (quote url-recreate-url) "url-parse" "\ @@ -28933,7 +28641,7 @@ Format is: ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10874)) ;;; Generated autoloads from url/url-privacy.el (autoload (quote url-setup-privacy-info) "url-privacy" "\ @@ -28949,7 +28657,7 @@ Setup variables that expose info about you and your system. ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" -;;;;;; (17843 45630)) +;;;;;; (17851 10874)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29078,7 +28786,7 @@ This uses `url-current-object', set locally to the buffer. ;;;*** ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) -;;;;;; "userlock" "userlock.el" (17843 45612)) +;;;;;; "userlock" "userlock.el" (17851 10848)) ;;; Generated autoloads from userlock.el (autoload (quote ask-user-about-lock) "userlock" "\ @@ -29106,7 +28814,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (17843 45620)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (17851 10861)) ;;; Generated autoloads from international/utf-7.el (autoload-coding-system 'utf-7 '(require 'utf-7)) @@ -29114,7 +28822,7 @@ The buffer in question is current when this function is called. ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" -;;;;;; (17843 45618)) +;;;;;; (17851 10860)) ;;; Generated autoloads from gnus/uudecode.el (autoload (quote uudecode-decode-region-external) "uudecode" "\ @@ -29144,7 +28852,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook -;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17843 45612)) +;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17851 10849)) ;;; Generated autoloads from vc.el (defvar vc-checkout-hook nil "\ @@ -29432,7 +29140,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-arch" "vc-arch.el" (17843 45612)) +;;;### (autoloads nil "vc-arch" "vc-arch.el" (17851 10848)) ;;; Generated autoloads from vc-arch.el (defun vc-arch-registered (file) (if (vc-find-root file "{arch}/=tagging-method") @@ -29442,7 +29150,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17843 45612)) +;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17851 10848)) ;;; Generated autoloads from vc-cvs.el (defun vc-cvs-registered (f) (when (file-readable-p (expand-file-name @@ -29452,7 +29160,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17843 45612)) +;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17851 10848)) ;;; Generated autoloads from vc-mcvs.el (defun vc-mcvs-registered (file) (if (vc-find-root file "MCVS/CVS") @@ -29463,7 +29171,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10848)) ;;; Generated autoloads from vc-rcs.el (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -29476,7 +29184,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10848)) ;;; Generated autoloads from vc-sccs.el (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -29493,7 +29201,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-svn" "vc-svn.el" (17838 18033)) +;;;### (autoloads nil "vc-svn" "vc-svn.el" (17851 10848)) ;;; Generated autoloads from vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -29511,7 +29219,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10871)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload (quote vhdl-mode) "vhdl-mode" "\ @@ -30052,7 +29760,7 @@ Key bindings: ;;;*** -;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17789 35159)) +;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17806 44346)) ;;; Generated autoloads from emulation/vi.el (autoload (quote vi-mode) "vi" "\ @@ -30107,7 +29815,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" -;;;;;; "language/viet-util.el" (17843 45621)) +;;;;;; "language/viet-util.el" (17851 10861)) ;;; Generated autoloads from language/viet-util.el (autoload (quote viet-encode-viscii-char) "viet-util" "\ @@ -30153,8 +29861,8 @@ Not documented ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame ;;;;;; view-buffer-other-window view-buffer view-file-other-frame -;;;;;; view-file-other-window view-file) "view" "view.el" (17843 -;;;;;; 45612)) +;;;;;; view-file-other-window view-file) "view" "view.el" (17851 +;;;;;; 10849)) ;;; Generated autoloads from view.el (defvar view-mode nil "\ @@ -30363,8 +30071,8 @@ Exit View mode and make the current buffer editable. ;;;*** -;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17843 -;;;;;; 45615)) +;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17851 +;;;;;; 10854)) ;;; Generated autoloads from emulation/vip.el (autoload (quote vip-setup) "vip" "\ @@ -30380,7 +30088,7 @@ Turn on VIP emulation of VI. ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10854)) ;;; Generated autoloads from emulation/viper.el (autoload (quote toggle-viper-mode) "viper" "\ @@ -30397,7 +30105,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Viper'. ;;;*** ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" -;;;;;; (17843 45615)) +;;;;;; (17851 10853)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -30486,7 +30194,7 @@ this is equivalent to `display-warning', using ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10849)) ;;; Generated autoloads from wdired.el (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ @@ -30502,7 +30210,7 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17843 45625)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17851 10865)) ;;; Generated autoloads from net/webjump.el (autoload (quote webjump) "webjump" "\ @@ -30519,7 +30227,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" -;;;;;; (17843 45629)) +;;;;;; (17851 10871)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -30552,7 +30260,7 @@ and off otherwise. ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" -;;;;;; (17843 45612)) +;;;;;; (17851 10849)) ;;; Generated autoloads from whitespace.el (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ @@ -30643,7 +30351,7 @@ This is meant to be added buffer-locally to `write-file-functions'. ;;;*** ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse -;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17843 45612)) +;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17851 10849)) ;;; Generated autoloads from wid-browse.el (autoload (quote widget-browse-at) "wid-browse" "\ @@ -30670,8 +30378,8 @@ With arg, turn widget mode on if and only if arg is positive. ;;;*** ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create -;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17843 -;;;;;; 45612)) +;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17851 +;;;;;; 10849)) ;;; Generated autoloads from wid-edit.el (autoload (quote widgetp) "wid-edit" "\ @@ -30715,8 +30423,8 @@ Setup current buffer so editing string widgets works. ;;;*** ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right -;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17843 -;;;;;; 45612)) +;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17851 +;;;;;; 10849)) ;;; Generated autoloads from windmove.el (autoload (quote windmove-left) "windmove" "\ @@ -30769,7 +30477,7 @@ Default MODIFIER is 'shift. ;;;*** ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" -;;;;;; (17843 45613)) +;;;;;; (17851 10849)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -30788,7 +30496,7 @@ With arg, turn Winner mode on if and only if arg is positive. ;;;*** ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" -;;;;;; "woman.el" (17843 45613)) +;;;;;; "woman.el" (17851 10849)) ;;; Generated autoloads from woman.el (autoload (quote woman) "woman" "\ @@ -30824,7 +30532,7 @@ decompress the file if appropriate. See the documentation for the ;;;*** ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" -;;;;;; (17843 45616)) +;;;;;; (17851 10854)) ;;; Generated autoloads from emulation/ws-mode.el (autoload (quote wordstar-mode) "ws-mode" "\ @@ -30937,7 +30645,7 @@ The key bindings are: ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (17843 45613)) +;;;;;; (17851 10850)) ;;; Generated autoloads from xml.el (autoload (quote xml-parse-file) "xml" "\ @@ -30962,8 +30670,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. ;;;*** -;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17843 -;;;;;; 45613)) +;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17851 +;;;;;; 10850)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -30991,7 +30699,7 @@ down the SHIFT key while pressing the mouse button. ;;;*** ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" -;;;;;; "gnus/yenc.el" (17843 45618)) +;;;;;; "gnus/yenc.el" (17851 10860)) ;;; Generated autoloads from gnus/yenc.el (autoload (quote yenc-decode-region) "yenc" "\ @@ -31007,7 +30715,7 @@ Extract file name from an yenc header. ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (17843 45626)) +;;;;;; yow) "yow" "play/yow.el" (17851 10866)) ;;; Generated autoloads from play/yow.el (autoload (quote yow) "yow" "\ @@ -31033,7 +30741,7 @@ Zippy goes to the analyst. ;;;*** -;;;### (autoloads (zone) "zone" "play/zone.el" (17843 45626)) +;;;### (autoloads (zone) "zone" "play/zone.el" (17851 10866)) ;;; Generated autoloads from play/zone.el (autoload (quote zone) "zone" "\ @@ -31148,9 +30856,9 @@ Zone out, completely. ;;;;;; "net/eudcb-bbdb.el" "net/eudcb-ldap.el" "net/eudcb-mab.el" ;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/tls.el" ;;;;;; "net/tramp-smb.el" "net/tramp-util.el" "net/tramp-uu.el" -;;;;;; "net/tramp-vc.el" "net/trampver.el" "obsolete/sc.el" "patcomp.el" -;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" -;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" +;;;;;; "net/tramp-vc.el" "net/trampver.el" "patcomp.el" "paths.el" +;;;;;; "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" "pgg-def.el" +;;;;;; "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" ;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" ;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el" @@ -31161,22 +30869,19 @@ Zone out, completely. ;;;;;; "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" "progmodes/xscheme.el" ;;;;;; "register.el" "replace.el" "rfn-eshadow.el" "s-region.el" ;;;;;; "saveplace.el" "sb-image.el" "scroll-bar.el" "select.el" -;;;;;; "soundex.el" "startup.el" "subdirs.el" "tempo.el" "term/apollo.el" -;;;;;; "term/bobcat.el" "term/cygwin.el" "term/linux.el" "term/lk201.el" -;;;;;; "term/vt102.el" "term/vt125.el" "term/vt200.el" "term/vt201.el" -;;;;;; "term/vt220.el" "term/vt240.el" "term/vt300.el" "term/vt320.el" -;;;;;; "term/vt400.el" "term/vt420.el" "textmodes/bib-mode.el" "textmodes/makeinfo.el" -;;;;;; "textmodes/page-ext.el" "textmodes/page.el" "textmodes/refbib.el" -;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" -;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" -;;;;;; "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el" -;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el" -;;;;;; "url/url-cookie.el" "url/url-dired.el" "url/url-expand.el" -;;;;;; "url/url-ftp.el" "url/url-history.el" "url/url-imap.el" "url/url-methods.el" -;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "url/vc-dav.el" -;;;;;; "vc-hooks.el" "vcursor.el" "version.el" "vms-patch.el" "vmsproc.el" -;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "widget.el" "window.el" "x-dnd.el") (17845 23032 619212)) +;;;;;; "soundex.el" "startup.el" "subdirs.el" "tempo.el" "textmodes/bib-mode.el" +;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/page.el" +;;;;;; "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el" +;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" +;;;;;; "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" "textmodes/text-mode.el" +;;;;;; "timezone.el" "tooltip.el" "tree-widget.el" "uniquify.el" +;;;;;; "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" +;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el" +;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" +;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" +;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" +;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" +;;;;;; "x-dnd.el") (17851 11084 773610)) ;;;*** From 04b5376f70acd3b856339e3b6c0de4b5a5c973d1 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sat, 27 Jan 2007 11:55:59 +0000 Subject: [PATCH 015/131] (jka-compr-shell): Doc fix. --- lisp/jka-compr.el | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index b5fad3ee1ce..8c107cc3271 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -47,18 +47,9 @@ ;; The default value of this variable allows jka-compr to work with ;; Unix compress and gzip. ;; -;; If you are concerned about the stderr output of gzip and other -;; compression/decompression programs showing up in your buffers, you -;; should set the discard-error flag in the compression-info-list. -;; This will cause the stderr of all programs to be discarded. -;; However, it also causes emacs to call compression/uncompression -;; programs through a shell (which is specified by jka-compr-shell). -;; This may be a drag if, on your system, starting up a shell is -;; slow. -;; ;; If you don't want messages about compressing and decompressing -;; to show up in the echo area, you can set the compress-name and -;; decompress-name fields of the jka-compr-compression-info-list to +;; to show up in the echo area, you can set the compress-msg and +;; decompress-msg fields of the jka-compr-compression-info-list to ;; nil. @@ -105,9 +96,7 @@ (defcustom jka-compr-shell "sh" "*Shell to be used for calling compression programs. -The value of this variable only matters if you want to discard the -stderr of a compression/decompression program (see the documentation -for `jka-compr-compression-info-list')." +NOTE: Not used in MS-DOS and Windows systems." :type 'string :group 'jka-compr) From bfe6997213af49b618bed3ec0f7ffa7d45f699da Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sat, 27 Jan 2007 12:01:06 +0000 Subject: [PATCH 016/131] (jka-compr-compression-info-list): Doc fix. --- lisp/ChangeLog | 13 +++++++++---- lisp/jka-cmpr-hook.el | 4 ---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 38763f69e51..2aae562e096 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-01-27 Juanma Barranquero + + * jka-compr.el (jka-compr-shell): Doc fix. + + * jka-cmpr-hook.el (jka-compr-compression-info-list): Doc fix. + 2007-01-26 Vinicius Jose Latorre * ps-print.ps: Fix background height. @@ -10,8 +16,7 @@ 2007-01-24 Dan Nicolaescu - * Makefile.in (custom-deps, finder-data): Add dependency to - loaddefs.el. + * Makefile.in (custom-deps, finder-data): Add dependency to loaddefs.el. 2007-01-24 Miles Bader @@ -41,7 +46,7 @@ * viper-keym.el (viper-insert-basic-map): Delete binding for S-TAB. * ediff-util.el (ediff-clone-buffer-for-region-comparison): Change text - of message. Activate mark. + of message. Activate mark. (ediff-activate-mark): Set transient-mark-mode to t. * ediff.el (ediff-regions-wordwise, ediff-regions-linewise): Doc fix. @@ -53,7 +58,7 @@ 2007-01-22 Kim F. Storm - * ido.el (ido-active): Add xemacs test from ido-minibuffer-setup. + * ido.el (ido-active): Add XEmacs test from ido-minibuffer-setup. (ido-initiate-auto-merge, ido-exhibit, ido-minibuffer-setup) (ido-tidy): Use ido-active. diff --git a/lisp/jka-cmpr-hook.el b/lisp/jka-cmpr-hook.el index 0daa34abb95..ce00181aaa3 100644 --- a/lisp/jka-cmpr-hook.el +++ b/lisp/jka-cmpr-hook.el @@ -248,10 +248,6 @@ APPEND-FLAG STRIP-EXTENSION-FLAG FILE-MAGIC-CHARS], where: file-magic-chars is a string of characters that you would find at the beginning of a file compressed in this way. -Because of the way `call-process' is defined, discarding the stderr output of -a program adds the overhead of starting a shell each time the program is -invoked. - If you set this outside Custom while Auto Compression mode is already enabled \(as it is by default), you have to call `jka-compr-update' after setting it to properly update other From ea88e7752ecf1222f9950181b8fd7b447b06a243 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 13:21:19 +0000 Subject: [PATCH 017/131] (ls-lisp-use-localized-time-format): New defcustom. (ls-lisp-format-time-list): Doc fix. Mention ls-lisp-use-localized-time-format. (ls-lisp-format-time): Use ls-lisp-format-time-list if ls-lisp-use-localized-time-format is non-nil, even if a valid locale is defined. --- lisp/ls-lisp.el | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 2b778db2387..20da227b010 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -151,7 +151,10 @@ Otherwise they are treated as Emacs regexps (for backward compatibility)." '("%b %e %H:%M" "%b %e %Y") "*List of `format-time-string' specs to display file time stamps. -They are used whenever a locale is not specified to use instead. +These specs are used ONLY if a valid locale can not be determined. + +If `ls-lisp-use-localized-time-format' is non-nil, these specs are used +regardless of whether the locale can be determined. Syntax: (EARLY-TIME-FORMAT OLD-TIME-FORMAT) @@ -166,6 +169,15 @@ current year. The OLD-TIME-FORMAT is used for older files. To use ISO (string :tag "Old time format")) :group 'ls-lisp) +(defcustom ls-lisp-use-localized-time-format nil + "*Non-nil causes ls-lisp to use `ls-lisp-format-time-list' even if +a valid locale is specified. + +WARNING: Using localized date/time format might cause Dired columns +to fail to lign up, e.g. if month names are not all of the same length." + :type 'boolean + :group 'ls-lisp) + (defvar original-insert-directory nil "This holds the original function definition of `insert-directory'.") @@ -567,8 +579,12 @@ All ls time options, namely c, t and u, are handled." (setq locale nil)) (format-time-string (if (and (<= past-cutoff diff) (<= diff 0)) - (if locale "%m-%d %H:%M" (nth 0 ls-lisp-format-time-list)) - (if locale "%Y-%m-%d " (nth 1 ls-lisp-format-time-list))) + (if (and locale (not ls-lisp-use-localized-time-format)) + "%m-%d %H:%M" + (nth 0 ls-lisp-format-time-list)) + (if (and locale (not ls-lisp-use-localized-time-format)) + "%Y-%m-%d " + (nth 1 ls-lisp-format-time-list))) time)) (error "Unk 0 0000")))) From de3207757d1fed32c9db707c448675d8a4868ba5 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 13:51:54 +0000 Subject: [PATCH 018/131] (ls in Lisp): Document ls-lisp-format-time-list and ls-lisp-use-localized-time-format. --- man/msdog.texi | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/man/msdog.texi b/man/msdog.texi index 47a15cfc019..0ed15229b7c 100644 --- a/man/msdog.texi +++ b/man/msdog.texi @@ -280,6 +280,37 @@ restart Emacs, since @file{ls-lisp.el} is preloaded. file-name patterns are supported: if it is non-@code{nil} (the default), they are treated as shell-style wildcards; otherwise they are treated as Emacs regular expressions. + +@vindex ls-lisp-format-time-list + The variable @code{ls-lisp-format-time-list} defines how to format +the date and time of files. @emph{The value of this variable is +ignored}, unless Emacs cannot determine the current locale. (However, +if the value of @code{ls-lisp-use-localized-time-format} is +non-@code{nil}, Emacs obeys @code{ls-lisp-format-time-list} even if +the current locale is available; see below.) + +The value of @code{ls-lisp-format-time-list} is a list of 2 strings. +The first string is used if the file was modified within the current +year, while the second string is used for older files. In each of +these two strings you can use @samp{%}-sequences to substitute parts +of the time. For example: +@lisp +("%b %e %H:%M" "%b %e %Y") +@end lisp + +@noindent +Note that the strings substituted for these @samp{%}-sequences depend +on the current locale. @xref{Time Parsing,,, elisp, The Emacs Lisp +Reference Manual}, for more about format time specs. + +@vindex ls-lisp-use-localized-time-format + Normally, Emacs formats the file time stamps in either traditional +or ISO-style time format. However, if the value of the variable +@code{ls-lisp-use-localized-time-format} is non-@code{nil}, Emacs +formats file time stamps according to what +@code{ls-lisp-format-time-list} specifies. The @samp{%}-sequences in +@code{ls-lisp-format-time-list} produce locale-dependent month and day +names, which might cause misalignment of columns in Dired display. @end ifnottex @node Windows HOME From 9b0aaece34043d48548d5974fdf5243f761d45fd Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 13:52:16 +0000 Subject: [PATCH 019/131] *** empty log message *** --- lisp/ChangeLog | 9 +++++++++ man/ChangeLog | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2aae562e096..4bf785d5b1a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2007-01-27 Eli Zaretskii + + * ls-lisp.el (ls-lisp-use-localized-time-format): New defcustom. + (ls-lisp-format-time-list): Doc fix. Mention + ls-lisp-use-localized-time-format. + (ls-lisp-format-time): Use ls-lisp-format-time-list if + ls-lisp-use-localized-time-format is non-nil, even if a valid + locale is defined. + 2007-01-27 Juanma Barranquero * jka-compr.el (jka-compr-shell): Doc fix. diff --git a/man/ChangeLog b/man/ChangeLog index b7ac61c07b4..44a02efe937 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2007-01-27 Eli Zaretskii + + * msdog.texi (ls in Lisp): Document ls-lisp-format-time-list and + ls-lisp-use-localized-time-format. + 2007-01-20 Markus Triska * flymake.texi (Flymake mode): find-file-hook instead of ...-hooks. From 00e10871c5ff827693aa82dc12b269bc9951a28f Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sat, 27 Jan 2007 14:40:08 +0000 Subject: [PATCH 020/131] * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set default-directory to a sane value when calling start-process. --- lisp/ChangeLog | 5 +++++ lisp/net/tramp.el | 9 +++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4bf785d5b1a..613bd9e6bcd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-27 Michael Albinus + + * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set + default-directory to a sane value when calling start-process. + 2007-01-27 Eli Zaretskii * ls-lisp.el (ls-lisp-use-localized-time-format): New defcustom. diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 5625072a155..257fbc4e47b 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3245,8 +3245,13 @@ be a local filename. The method used must be an out-of-band method." ;; Use rcp-like program for file transfer. (unwind-protect - (let ((p (apply 'start-process (buffer-name trampbuf) trampbuf - copy-program copy-args))) + (let* ((default-directory + (if (and (stringp default-directory) + (file-accessible-directory-p default-directory)) + default-directory + (tramp-temporary-file-directory))) + (p (apply 'start-process (buffer-name trampbuf) trampbuf + copy-program copy-args))) (tramp-set-process-query-on-exit-flag p nil) (tramp-process-actions p multi-method method user host tramp-actions-copy-out-of-band)) From 05b531f69577fc9f2bbbd3cfe7c12f1132e7fce6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 17:38:14 +0000 Subject: [PATCH 021/131] Fix whitespace and indentation. --- lisp/mouse.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lisp/mouse.el b/lisp/mouse.el index 7d3c39a986c..c221a9bee99 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -1041,19 +1041,19 @@ should only be used by mouse-drag-region." (if do-multi-click (goto-char start-point)) (delete-overlay mouse-drag-overlay) (when (and (functionp fun) - (= start-hscroll (window-hscroll start-window)) - ;; Don't run the up-event handler if the - ;; window start changed in a redisplay after - ;; the mouse-set-point for the down-mouse - ;; event at the beginning of this function. - ;; When the window start has changed, the - ;; up-mouse event will contain a different - ;; position due to the new window contents, - ;; and point is set again. - (or end-point - (= (window-start start-window) - start-window-start))) - (when (and on-link + (= start-hscroll (window-hscroll start-window)) + ;; Don't run the up-event handler if the + ;; window start changed in a redisplay after + ;; the mouse-set-point for the down-mouse + ;; event at the beginning of this function. + ;; When the window start has changed, the + ;; up-mouse event will contain a different + ;; position due to the new window contents, + ;; and point is set again. + (or end-point + (= (window-start start-window) + start-window-start))) + (when (and on-link (or (not end-point) (= end-point start-point)) (consp event) (or remap-double-click From 4fda07c1a645b7d3bae345f767212d7d215fa21e Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 18:01:15 +0000 Subject: [PATCH 022/131] (Fcompleting_read): Doc fix. --- src/ChangeLog | 4 ++++ src/minibuf.c | 11 ++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index c5f022e54e0..f0d1b80ad72 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-01-27 Eli Zaretskii + + * minibuf.c (Fcompleting_read): Doc fix. + 2007-01-26 Jan Dj,Ad(Brv * gtkutil.c (xg_initialize): Call XftInit if HAVE_XFT. diff --git a/src/minibuf.c b/src/minibuf.c index 5618f0223a4..9c078a37b3d 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1686,11 +1686,16 @@ Lisp_Object Vminibuffer_completing_file_name; DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, doc: /* Read a string in the minibuffer, with completion. PROMPT is a string to prompt with; normally it ends in a colon and a space. -TABLE can be a list of strings, an alist, an obarray or a hash table. -TABLE can also be a function to do the completion itself. + +TABLE can be a list of strings, an alist, an obarray or a hash table; their +elements are tested to see if they begin with STRING. +TABLE can also be a function to do the completion itself; it receives +three arguments: the values STRING, PREDICATE and nil. +Whatever it returns becomes the value of `try-completion'. + PREDICATE limits completion to a subset of TABLE. See `try-completion' and `all-completions' for more details - on completion, TABLE, and PREDICATE. + on completion, TABLE (called "alist" there), and PREDICATE. If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless the input is (or completes to) an element of TABLE or is null. From 634e516bef2b70d4aa96e5007155f76a5030f99f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 18:12:50 +0000 Subject: [PATCH 023/131] More details about disabling features that hamper performance with slow X connections. --- etc/PROBLEMS | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/etc/PROBLEMS b/etc/PROBLEMS index aede0f7c1d2..eb7dffe41ab 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -1263,7 +1263,20 @@ be carried out at the same time: package. 2) If the connection is very slow, you might also want to consider - switching off scroll bars, menu bar, and tool bar. + switching off scroll bars, menu bar, and tool bar. Adding the + following forms to your .emacs file will accomplish that, but only + after the the initial frame is displayed: + + (scroll-bar-mode -1) + (menu-bar-mode -1) + (tool-bar-mode -1) + + For still quicker startup, put these X resources in your .Xdefaults + file: + + Emacs.verticalScrollBars: off + Emacs.menuBar: off + Emacs.toolBar: off 3) Use ssh to forward the X connection, and enable compression on this forwarded X connection (ssh -XC remotehostname emacs ...). From 65849ada634f6dd628fc254f8d78ab26b21a6f5b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 18:19:16 +0000 Subject: [PATCH 024/131] (Fthis_command_keys, Fthis_command_keys_vector): Doc fix. --- src/ChangeLog | 2 ++ src/keyboard.c | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index f0d1b80ad72..efb8c4b7e71 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2007-01-27 Eli Zaretskii + * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Doc fix. + * minibuf.c (Fcompleting_read): Doc fix. 2007-01-26 Jan Dj,Ad(Brv diff --git a/src/keyboard.c b/src/keyboard.c index 48cf2673a90..a238c838e66 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -10297,7 +10297,9 @@ DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, doc: /* Return the key sequence that invoked this command. However, if the command has called `read-key-sequence', it returns the last key sequence that has been read. -The value is a string or a vector. */) +The value is a string or a vector. + +See also `this-command-keys-vector'. */) () { return make_event_array (this_command_key_count, @@ -10307,7 +10309,9 @@ The value is a string or a vector. */) DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, doc: /* Return the key sequence that invoked this command, as a vector. However, if the command has called `read-key-sequence', it returns -the last key sequence that has been read. */) +the last key sequence that has been read. + +See also `this-command-keys'. */) () { return Fvector (this_command_key_count, From b99e3557ef91a0fb6da07e497e831c4dc15a0a09 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 18:39:47 +0000 Subject: [PATCH 025/131] * unexhp9k800.c: Remove due to lack of legal papers. * m/sr2k.h, m/hp800.h: Remove due to dependence on above. --- src/ChangeLog | 6 + src/m/hp800.h | 187 --------------------------- src/m/sr2k.h | 160 ----------------------- src/unexhp9k800.c | 322 ---------------------------------------------- 4 files changed, 6 insertions(+), 669 deletions(-) delete mode 100644 src/m/hp800.h delete mode 100644 src/m/sr2k.h delete mode 100644 src/unexhp9k800.c diff --git a/src/ChangeLog b/src/ChangeLog index efb8c4b7e71..917377a10f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2007-01-27 Chong Yidong + + * unexhp9k800.c: Remove due to lack of legal papers. + + * m/sr2k.h, m/hp800.h: Remove due to dependence on above. + 2007-01-27 Eli Zaretskii * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Doc fix. diff --git a/src/m/hp800.h b/src/m/hp800.h deleted file mode 100644 index f48f4c8152e..00000000000 --- a/src/m/hp800.h +++ /dev/null @@ -1,187 +0,0 @@ -/* machine description file for hp9000 series 800 machines. - Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, - 2006, 2007 Free Software Foundation, Inc. - -This file is part of GNU Emacs. - -GNU Emacs is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GNU Emacs is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GNU Emacs; see the file COPYING. If not, write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. */ - - -/* The following line tells the configuration script what sort of - operating system this machine is likely to run. - USUAL-OPSYS="hpux" */ - -/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word - is the most significant byte. */ - -#define WORDS_BIG_ENDIAN - -/* Define NO_ARG_ARRAY if you cannot take the address of the first of a - * group of arguments and treat it as an array of the arguments. */ - -#define NO_ARG_ARRAY - -/* Define WORD_MACHINE if addresses and such have - * to be corrected before they can be used as byte counts. */ - -#undef WORD_MACHINE - -/* Now define a symbol for the cpu type, if your compiler - does not define it automatically: - Ones defined so far include vax, m68000, ns16000, pyramid, - orion, tahoe, APOLLO and many others */ -#ifndef hp9000s800 -# define hp9000s800 -#endif - -/* Use type int rather than a union, to represent Lisp_Object */ -/* This is desirable for most machines. */ - -#define NO_UNION_TYPE - -/* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend - the bit field into an int. In other words, if bit fields - are always unsigned. - - If you use NO_UNION_TYPE, this flag does not matter. */ - -#define EXPLICIT_SIGN_EXTEND - -/* The standard definitions of these macros would work ok, - but these are faster because the constants are short. */ - - -#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) - -#define XSET(var, type, ptr) \ - ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) - -/* Common definitions for HPUX and GNU/Linux. */ - -#if defined (__hpux) || defined (GNU_LINUX) -/* Now define a symbol for the cpu type, if your compiler - does not define it automatically: - Ones defined so far include vax, m68000, ns16000, pyramid, - orion, tahoe, APOLLO and many others */ -#ifndef hp9000s800 -# define hp9000s800 -#endif - -/* Define CANNOT_DUMP on machines where unexec does not work. - Then the function dump-emacs will not be defined - and temacs will do (load "loadup") automatically unless told otherwise. */ - -#undef CANNOT_DUMP - -/* Define NO_REMAP if memory segmentation makes it not work well - to change the boundary between the text section and data section - when Emacs is dumped. If you define this, the preloaded Lisp - code will not be sharable; but that's better than failing completely. */ - -#define NO_REMAP - -#endif /* __hpux or GNU_LINUX */ - -/* Stuff for just GNU/Linux. */ - -#ifdef GNU_LINUX - -/* Data type of load average, as read out of kmem. */ - -#define LOAD_AVE_TYPE long - -/* Convert that into an integer that is 100 for a load average of 1.0 */ - -#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) - -#endif /* GNU_LINUX */ - -/* Stuff for just HPUX. */ - -#ifdef __hpux - -/* Define VIRT_ADDR_VARIES if the virtual addresses of - pure and impure space as loaded can vary, and even their - relative order cannot be relied on. - - Otherwise Emacs assumes that text space precedes data space, - numerically. */ - -#define VIRT_ADDR_VARIES - -/* the data segment on this machine always starts at address 0x40000000. */ - -#define DATA_SEG_BITS 0x40000000 - -#define DATA_START 0x40000000 -#define TEXT_START 0x00000000 - -/* This machine requires completely different unexec code - which lives in a separate file. Specify the file name. */ - -#define UNEXEC unexhp9k800.o - -#define LIBS_MACHINE -#define LIBS_DEBUG - -/* Include the file bsdtty.h, since this machine has job control. */ -#define NEED_BSDTTY - -/* Data type of load average, as read out of kmem. */ - -#define LOAD_AVE_TYPE double - -/* Convert that into an integer that is 100 for a load average of 1.0 */ - -#define LOAD_AVE_CVT(x) ((int) (x * 100.0)) - -/* The symbol in the kernel where the load average is found - is named _avenrun. At this time there are two major flavors - of hp-ux (there is the s800 and s300 (s200) flavors). The - differences are thusly moved to the corresponding machine description file. -*/ - -/* no underscore please */ -#define LDAV_SYMBOL "avenrun" - -#if 0 /* Supposedly no longer true. */ -/* In hpux, for unknown reasons, S_IFLNK is defined even though - symbolic links do not exist. - Make sure our conditionals based on S_IFLNK are not confused. - - Here we assume that stat.h is included before config.h - so that we can override it here. */ - -#undef S_IFLNK -#endif - -/* On USG systems these have different names. */ - -#define index strchr -#define rindex strrchr - -#endif /* __hpux */ - -/* Systems with GCC don't need to lose. */ -#ifdef __NetBSD__ -# ifdef __GNUC__ -# define alloca __builtin_alloca -# define HAVE_ALLOCA -# endif /* __GNUC__ */ -#endif /* __NetBSD__ */ - -/* arch-tag: 809436e6-1645-4b92-b40d-2de5d6e7227c - (do not change this comment) */ diff --git a/src/m/sr2k.h b/src/m/sr2k.h deleted file mode 100644 index 2342bf8ef20..00000000000 --- a/src/m/sr2k.h +++ /dev/null @@ -1,160 +0,0 @@ -/* machine description file for Hitachi SR2001/SR2201 machines. - Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, - 2006, 2007 Free Software Foundation, Inc. - -This file is part of GNU Emacs. - -GNU Emacs is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GNU Emacs is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GNU Emacs; see the file COPYING. If not, write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. */ - - -/* The following line tells the configuration script what sort of - operating system this machine is likely to run. - USUAL-OPSYS="hpux" */ - -/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word - is the most significant byte. */ - -#define WORDS_BIG_ENDIAN - -/* Define NO_ARG_ARRAY if you cannot take the address of the first of a - * group of arguments and treat it as an array of the arguments. */ - -#define NO_ARG_ARRAY - -/* Define WORD_MACHINE if addresses and such have - * to be corrected before they can be used as byte counts. */ - -#undef WORD_MACHINE - -/* Now define a symbol for the cpu type, if your compiler - does not define it automatically: - Ones defined so far include vax, m68000, ns16000, pyramid, - orion, tahoe, APOLLO and many others */ -#ifndef hp9000s800 -# define hp9000s800 -#endif - -/* Use type int rather than a union, to represent Lisp_Object */ -/* This is desirable for most machines. */ - -#define NO_UNION_TYPE - -/* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend - the bit field into an int. In other words, if bit fields - are always unsigned. - - If you use NO_UNION_TYPE, this flag does not matter. */ - -#define EXPLICIT_SIGN_EXTEND - -/* The standard definitions of these macros would work ok, - but these are faster because the constants are short. */ - - -#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) - -#define XSET(var, type, ptr) \ - ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) - -/* #ifdef __hpux */ -/* Now define a symbol for the cpu type, if your compiler - does not define it automatically: - Ones defined so far include vax, m68000, ns16000, pyramid, - orion, tahoe, APOLLO and many others */ - -#ifndef hp9000s800 -# define hp9000s800 -#endif - - -/* Data type of load average, as read out of kmem. */ - -#define LOAD_AVE_TYPE double - -/* Convert that into an integer that is 100 for a load average of 1.0 */ - -#define LOAD_AVE_CVT(x) ((int) (x * 100.0)) - - -/* Define CANNOT_DUMP on machines where unexec does not work. - Then the function dump-emacs will not be defined - and temacs will do (load "loadup") automatically unless told otherwise. */ - -#undef CANNOT_DUMP - -/* Define VIRT_ADDR_VARIES if the virtual addresses of - pure and impure space as loaded can vary, and even their - relative order cannot be relied on. - - Otherwise Emacs assumes that text space precedes data space, - numerically. */ - -#define VIRT_ADDR_VARIES - -/* the data segment on this machine always starts at address 0x40000000. */ - -#define DATA_SEG_BITS 0x40000000 - -#define DATA_START 0x40000000 -#define TEXT_START 0x00000000 - -/* Define NO_REMAP if memory segmentation makes it not work well - to change the boundary between the text section and data section - when Emacs is dumped. If you define this, the preloaded Lisp - code will not be sharable; but that's better than failing completely. */ - -#define NO_REMAP - -/* This machine requires completely different unexec code - which lives in a separate file. Specify the file name. */ - -#define UNEXEC unexhp9k800.o - -#define LIBS_MACHINE -#define LIBS_DEBUG - -/* Include the file bsdtty.h, since this machine has job control. */ -/* #define NEED_BSDTTY */ - -/* The symbol in the kernel where the load average is found - is named _avenrun. At this time there are two major flavors - of hp-ux (there is the s800 and s300 (s200) flavors). The - differences are thusly moved to the corresponding machine description file. -*/ - -/* no underscore please */ -#define LDAV_SYMBOL "avenrun" - -#if 0 /* Supposedly no longer true. */ -/* In hpux, for unknown reasons, S_IFLNK is defined even though - symbolic links do not exist. - Make sure our conditionals based on S_IFLNK are not confused. - - Here we assume that stat.h is included before config.h - so that we can override it here. */ - -#undef S_IFLNK -#endif - -/* On USG systems these have different names. */ - -#define index strchr -#define rindex strrchr - -/* #endif */ - -/* arch-tag: 4ced5b51-ffe6-4be1-9954-eb40657023a5 - (do not change this comment) */ diff --git a/src/unexhp9k800.c b/src/unexhp9k800.c deleted file mode 100644 index 146cc5707da..00000000000 --- a/src/unexhp9k800.c +++ /dev/null @@ -1,322 +0,0 @@ -/* Unexec for HP 9000 Series 800 machines. - Bob Desinger - - Note that the GNU project considers support for HP operation a - peripheral activity which should not be allowed to divert effort - from development of the GNU system. Changes in this code will be - installed when users send them in, but aside from that we don't - plan to think about it, or about whether other Emacs maintenance - might break it. - - - Unexec creates a copy of the old a.out file, and replaces the old data - area with the current data area. When the new file is executed, the - process will see the same data structures and data values that the - original process had when unexec was called. - - Unlike other versions of unexec, this one copies symbol table and - debug information to the new a.out file. Thus, the new a.out file - may be debugged with symbolic debuggers. - - If you fix any bugs in this, I'd like to incorporate your fixes. - Send them to uunet!hpda!hpsemc!jmorris or jmorris%hpsemc@hplabs.HP.COM. - - CAVEATS: - This routine saves the current value of all static and external - variables. This means that any data structure that needs to be - initialized must be explicitly reset. Variables will not have their - expected default values. - - Unfortunately, the HP-UX signal handler has internal initialization - flags which are not explicitly reset. Thus, for signals to work in - conjunction with this routine, the following code must executed when - the new process starts up. - - void _sigreturn (); - ... - sigsetreturn (_sigreturn); -*/ - -#ifdef emacs -#include -#endif - -#include -#include -#include - -#include - -#ifdef HPUX_USE_SHLIBS -#include -#endif - -/* brk value to restore, stored as a global. - This is really used only if we used shared libraries. */ -static long brk_on_dump = 0; - -/* Called from main, if we use shared libraries. */ -int -run_time_remap (ignored) - char *ignored; -{ - brk ((char *) brk_on_dump); -} - -#undef roundup -#define roundup(x,n) (((x) + ((n) - 1)) & ~((n) - 1)) /* n is power of 2 */ -#define min(x,y) (((x) < (y)) ? (x) : (y)) - - -/* Create a new a.out file, same as old but with current data space */ - -unexec (new_name, old_name, new_end_of_text, dummy1, dummy2) - char new_name[]; /* name of the new a.out file to be created */ - char old_name[]; /* name of the old a.out file */ - char *new_end_of_text; /* ptr to new edata/etext; NOT USED YET */ - int dummy1, dummy2; /* not used by emacs */ -{ - int old, new; - int old_size, new_size; - struct header hdr; - struct som_exec_auxhdr auxhdr; - long i; - - /* For the greatest flexibility, should create a temporary file in - the same directory as the new file. When everything is complete, - rename the temp file to the new name. - This way, a program could update its own a.out file even while - it is still executing. If problems occur, everything is still - intact. NOT implemented. */ - - /* Open the input and output a.out files */ - old = open (old_name, O_RDONLY); - if (old < 0) - { perror (old_name); exit (1); } - new = open (new_name, O_CREAT|O_RDWR|O_TRUNC, 0777); - if (new < 0) - { perror (new_name); exit (1); } - - /* Read the old headers */ - read_header (old, &hdr, &auxhdr); - - brk_on_dump = (long) sbrk (0); - - /* Decide how large the new and old data areas are */ - old_size = auxhdr.exec_dsize; - /* I suspect these two statements are separate - to avoid a compiler bug in hpux version 8. */ - i = (long) sbrk (0); - new_size = i - auxhdr.exec_dmem; - - /* Copy the old file to the new, up to the data space */ - lseek (old, 0, 0); - copy_file (old, new, auxhdr.exec_dfile); - - /* Skip the old data segment and write a new one */ - lseek (old, old_size, 1); - save_data_space (new, &hdr, &auxhdr, new_size); - - /* Copy the rest of the file */ - copy_rest (old, new); - - /* Update file pointers since we probably changed size of data area */ - update_file_ptrs (new, &hdr, &auxhdr, auxhdr.exec_dfile, new_size-old_size); - - /* Save the modified header */ - write_header (new, &hdr, &auxhdr); - - /* Close the binary file */ - close (old); - close (new); - return 0; -} - -/* Save current data space in the file, update header. */ - -save_data_space (file, hdr, auxhdr, size) - int file; - struct header *hdr; - struct som_exec_auxhdr *auxhdr; - int size; -{ - /* Write the entire data space out to the file */ - if (write (file, auxhdr->exec_dmem, size) != size) - { perror ("Can't save new data space"); exit (1); } - - /* Update the header to reflect the new data size */ - auxhdr->exec_dsize = size; - auxhdr->exec_bsize = 0; -} - -/* Update the values of file pointers when something is inserted. */ - -update_file_ptrs (file, hdr, auxhdr, location, offset) - int file; - struct header *hdr; - struct som_exec_auxhdr *auxhdr; - unsigned int location; - int offset; -{ - struct subspace_dictionary_record subspace; - int i; - - /* Increase the overall size of the module */ - hdr->som_length += offset; - - /* Update the various file pointers in the header */ -#define update(ptr) if (ptr > location) ptr = ptr + offset - update (hdr->aux_header_location); - update (hdr->space_strings_location); - update (hdr->init_array_location); - update (hdr->compiler_location); - update (hdr->symbol_location); - update (hdr->fixup_request_location); - update (hdr->symbol_strings_location); - update (hdr->unloadable_sp_location); - update (auxhdr->exec_tfile); - update (auxhdr->exec_dfile); - - /* Do for each subspace dictionary entry */ - lseek (file, hdr->subspace_location, 0); - for (i = 0; i < hdr->subspace_total; i++) - { - if (read (file, &subspace, sizeof (subspace)) != sizeof (subspace)) - { perror ("Can't read subspace record"); exit (1); } - - /* If subspace has a file location, update it */ - if (subspace.initialization_length > 0 - && subspace.file_loc_init_value > location) - { - subspace.file_loc_init_value += offset; - lseek (file, -sizeof (subspace), 1); - if (write (file, &subspace, sizeof (subspace)) != sizeof (subspace)) - { perror ("Can't update subspace record"); exit (1); } - } - } - - /* Do for each initialization pointer record */ - /* (I don't think it applies to executable files, only relocatables) */ -#undef update -} - -/* Read in the header records from an a.out file. */ - -read_header (file, hdr, auxhdr) - int file; - struct header *hdr; - struct som_exec_auxhdr *auxhdr; -{ - - /* Read the header in */ - lseek (file, 0, 0); - if (read (file, hdr, sizeof (*hdr)) != sizeof (*hdr)) - { perror ("Couldn't read header from a.out file"); exit (1); } - - if (hdr->a_magic != EXEC_MAGIC && hdr->a_magic != SHARE_MAGIC - && hdr->a_magic != DEMAND_MAGIC) - { - fprintf (stderr, "a.out file doesn't have legal magic number\n"); - exit (1); - } - - lseek (file, hdr->aux_header_location, 0); - if (read (file, auxhdr, sizeof (*auxhdr)) != sizeof (*auxhdr)) - { - perror ("Couldn't read auxiliary header from a.out file"); - exit (1); - } -} - -/* Write out the header records into an a.out file. */ - -write_header (file, hdr, auxhdr) - int file; - struct header *hdr; - struct som_exec_auxhdr *auxhdr; -{ - /* Update the checksum */ - hdr->checksum = calculate_checksum (hdr); - - /* Write the header back into the a.out file */ - lseek (file, 0, 0); - if (write (file, hdr, sizeof (*hdr)) != sizeof (*hdr)) - { perror ("Couldn't write header to a.out file"); exit (1); } - lseek (file, hdr->aux_header_location, 0); - if (write (file, auxhdr, sizeof (*auxhdr)) != sizeof (*auxhdr)) - { perror ("Couldn't write auxiliary header to a.out file"); exit (1); } -} - -/* Calculate the checksum of a SOM header record. */ - -calculate_checksum (hdr) - struct header *hdr; -{ - int checksum, i, *ptr; - - checksum = 0; ptr = (int *) hdr; - - for (i = 0; i < sizeof (*hdr) / sizeof (int) - 1; i++) - checksum ^= ptr[i]; - - return (checksum); -} - -/* Copy size bytes from the old file to the new one. */ - -copy_file (old, new, size) - int new, old; - int size; -{ - int len; - int buffer[8192]; /* word aligned will be faster */ - - for (; size > 0; size -= len) - { - len = min (size, sizeof (buffer)); - if (read (old, buffer, len) != len) - { perror ("Read failure on a.out file"); exit (1); } - if (write (new, buffer, len) != len) - { perror ("Write failure in a.out file"); exit (1); } - } -} - -/* Copy the rest of the file, up to EOF. */ - -copy_rest (old, new) - int new, old; -{ - int buffer[4096]; - int len; - - /* Copy bytes until end of file or error */ - while ((len = read (old, buffer, sizeof (buffer))) > 0) - if (write (new, buffer, len) != len) break; - - if (len != 0) - { perror ("Unable to copy the rest of the file"); exit (1); } -} - -#ifdef DEBUG -display_header (hdr, auxhdr) - struct header *hdr; - struct som_exec_auxhdr *auxhdr; -{ - /* Display the header information (debug) */ - printf ("\n\nFILE HEADER\n"); - printf ("magic number %d \n", hdr->a_magic); - printf ("text loc %.8x size %d \n", auxhdr->exec_tmem, auxhdr->exec_tsize); - printf ("data loc %.8x size %d \n", auxhdr->exec_dmem, auxhdr->exec_dsize); - printf ("entry %x \n", auxhdr->exec_entry); - printf ("Bss segment size %u\n", auxhdr->exec_bsize); - printf ("\n"); - printf ("data file loc %d size %d\n", - auxhdr->exec_dfile, auxhdr->exec_dsize); - printf ("som_length %d\n", hdr->som_length); - printf ("unloadable sploc %d size %d\n", - hdr->unloadable_sp_location, hdr->unloadable_sp_size); -} -#endif /* DEBUG */ - -/* arch-tag: d55a09ac-9427-4ec4-8496-cb9d7710774f - (do not change this comment) */ From 46683c5840345e7864e18e4ef3103984b8f700ba Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 18:40:43 +0000 Subject: [PATCH 026/131] Remove support for hp800 and sr2k machine types. --- configure.in | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) diff --git a/configure.in b/configure.in index 3c0dad5a561..ffafa585040 100644 --- a/configure.in +++ b/configure.in @@ -269,7 +269,6 @@ dnl see the `changequote' comment above. vax-*-netbsd*) machine=vax ;; arm-*-netbsd*) machine=arm ;; x86_64-*-netbsd*) machine=amdx86-64 ;; - hppa-*-netbsd*) machine=hp800 ;; shle-*-netbsd*) machine=sh3el ;; esac ;; @@ -585,13 +584,6 @@ dnl see the `changequote' comment above. machine=nh6000 opsys=powerunix NON_GNU_CPP="cc -Xo -E -P" ;; - ## SR2001/SR2201 running HI-UX/MPP - hppa1.1-hitachi-hiuxmpp* ) - machine=sr2k opsys=hiuxmpp - ;; - hppa1.1-hitachi-hiuxwe2* ) - machine=sr2k opsys=hiuxwe2 - ;; ## Honeywell XPS100 xps*-honeywell-sysv* ) machine=xps100 opsys=usg5-2 @@ -614,50 +606,6 @@ dnl see the `changequote' comment above. esac ;; - ## HP 9000 series 700 and 800, running HP/UX - hppa*-hp-hpux7* ) - machine=hp800 opsys=hpux - ;; - hppa*-hp-hpux8* ) - machine=hp800 opsys=hpux8 - ;; - hppa*-hp-hpux9shr* ) - machine=hp800 opsys=hpux9shr - ;; - hppa*-hp-hpux9* ) - machine=hp800 opsys=hpux9 - ;; - hppa*-hp-hpux10.2* ) - machine=hp800 opsys=hpux10-20 - ;; - hppa*-hp-hpux10* ) - machine=hp800 opsys=hpux10 - ;; - hppa*-hp-hpux1[1-9]* ) - machine=hp800 opsys=hpux11 - CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" - ;; - - hppa*-*-linux-gnu* ) - machine=hp800 opsys=gnu-linux - ;; - - ## HP 9000 series 700 and 800, running HP/UX - hppa*-hp-hpux* ) - ## Cross-compilation? Nah! - case "`uname -r`" in - ## Someone's system reports A.B8.05 for this. - ## I wonder what other possibilities there are. - *.B8.* ) machine=hp800 opsys=hpux8 ;; - *.08.* ) machine=hp800 opsys=hpux8 ;; - *.09.* ) machine=hp800 opsys=hpux9 ;; - *) machine=hp800 opsys=hpux10 ;; - esac - ;; - hppa*-*-nextstep* ) - machine=hp800 opsys=nextstep - ;; - ## Orion machines orion-orion-bsd* ) machine=orion opsys=bsd4-2 From 2c84b9d85d15518330ad150e666024272e81be2d Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 18:41:05 +0000 Subject: [PATCH 027/131] Regenerate. --- configure | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) diff --git a/configure b/configure index 672c1a9e111..001cf65d3e8 100755 --- a/configure +++ b/configure @@ -2235,7 +2235,6 @@ _ACEOF vax-*-netbsd*) machine=vax ;; arm-*-netbsd*) machine=arm ;; x86_64-*-netbsd*) machine=amdx86-64 ;; - hppa-*-netbsd*) machine=hp800 ;; shle-*-netbsd*) machine=sh3el ;; esac ;; @@ -2551,13 +2550,6 @@ _ACEOF machine=nh6000 opsys=powerunix NON_GNU_CPP="cc -Xo -E -P" ;; - ## SR2001/SR2201 running HI-UX/MPP - hppa1.1-hitachi-hiuxmpp* ) - machine=sr2k opsys=hiuxmpp - ;; - hppa1.1-hitachi-hiuxwe2* ) - machine=sr2k opsys=hiuxwe2 - ;; ## Honeywell XPS100 xps*-honeywell-sysv* ) machine=xps100 opsys=usg5-2 @@ -2580,50 +2572,6 @@ _ACEOF esac ;; - ## HP 9000 series 700 and 800, running HP/UX - hppa*-hp-hpux7* ) - machine=hp800 opsys=hpux - ;; - hppa*-hp-hpux8* ) - machine=hp800 opsys=hpux8 - ;; - hppa*-hp-hpux9shr* ) - machine=hp800 opsys=hpux9shr - ;; - hppa*-hp-hpux9* ) - machine=hp800 opsys=hpux9 - ;; - hppa*-hp-hpux10.2* ) - machine=hp800 opsys=hpux10-20 - ;; - hppa*-hp-hpux10* ) - machine=hp800 opsys=hpux10 - ;; - hppa*-hp-hpux1[1-9]* ) - machine=hp800 opsys=hpux11 - CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" - ;; - - hppa*-*-linux-gnu* ) - machine=hp800 opsys=gnu-linux - ;; - - ## HP 9000 series 700 and 800, running HP/UX - hppa*-hp-hpux* ) - ## Cross-compilation? Nah! - case "`uname -r`" in - ## Someone's system reports A.B8.05 for this. - ## I wonder what other possibilities there are. - *.B8.* ) machine=hp800 opsys=hpux8 ;; - *.08.* ) machine=hp800 opsys=hpux8 ;; - *.09.* ) machine=hp800 opsys=hpux9 ;; - *) machine=hp800 opsys=hpux10 ;; - esac - ;; - hppa*-*-nextstep* ) - machine=hp800 opsys=nextstep - ;; - ## Orion machines orion-orion-bsd* ) machine=orion opsys=bsd4-2 From 6d1f63d5f322758c67cf7c7184f8d8cddea72fdb Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 18:41:25 +0000 Subject: [PATCH 028/131] * configure.in: Remove support for hp800 and sr2k machine types. * configure: Regenerate. --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 806efe75965..570441ec519 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-27 Chong Yidong + + * configure.in: Remove support for hp800 and sr2k machine types. + + * configure: Regenerate. + 2007-01-26 Jan Dj,Ad(Brv * configure.in: Add check for libXft. From dc769d236e295d76060c7a9043d05f8591cf26d1 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 18:47:50 +0000 Subject: [PATCH 029/131] Support for HP 9000 series 800 and Hitachi SR2001/SR2201 machines was removed. --- etc/NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/NEWS b/etc/NEWS index ed1e34ce4e4..e8b5c8a5f08 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -120,6 +120,10 @@ See the files mac/README and mac/INSTALL for build instructions. --- ** Support for GNU/Linux systems on X86-64 machines was added. +--- +** Support for HP 9000 series 800 and Hitachi SR2001/SR2201 machines +was removed. + --- ** Mac OS 9 port now uses the Carbon API by default. You can also create non-Carbon build by specifying `NonCarbon' as a target. See From 914f7ec3f5b35be10bc5e4d9f843418c1b3fbb25 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 18:47:55 +0000 Subject: [PATCH 030/131] (outline-promote, outline-demote): Doc fix. Rename the arg CHILDREN -> WHICH. --- lisp/outline.el | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/lisp/outline.el b/lisp/outline.el index c9863083b92..20dfb2429ef 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -471,19 +471,22 @@ If INVISIBLE-OK is non-nil, an invisible heading line is ok too." (if up "Parent" "Demoted") head) head nil nil t))))) -(defun outline-promote (&optional children) +(defun outline-promote (&optional which) "Promote headings higher up the tree. -If prefix argument CHILDREN is given, promote also all the children. -If the region is active in `transient-mark-mode', promote all headings -in the region." +If transient-mark-mode is on, and mark is active, promote headings in +the region (from a Lisp program, pass `region' for WHICH). Otherwise: +without prefix argument, promote current heading and all headings in the +subtree (from a Lisp program, pass `subtree' for WHICH); with prefix +argument, promote just the current heading (from a Lisp program, pass +nil for WHICH, or do not pass any argument)." (interactive (list (if (and transient-mark-mode mark-active) 'region (outline-back-to-heading) (if current-prefix-arg nil 'subtree)))) (cond - ((eq children 'region) + ((eq which 'region) (outline-map-region 'outline-promote (region-beginning) (region-end))) - (children + (which (outline-map-region 'outline-promote (point) (save-excursion (outline-get-next-sibling) (point)))) @@ -507,19 +510,22 @@ in the region." (replace-match up-head nil t))))) -(defun outline-demote (&optional children) +(defun outline-demote (&optional which) "Demote headings lower down the tree. -If prefix argument CHILDREN is given, demote also all the children. -If the region is active in `transient-mark-mode', demote all headings -in the region." +If transient-mark-mode is on, and mark is active, demote headings in +the region (from a Lisp program, pass `region' for WHICH). Otherwise: +without prefix argument, demote current heading and all headings in the +subtree (from a Lisp program, pass `subtree' for WHICH); with prefix +argument, demote just the current heading (from a Lisp program, pass +nil for WHICH, or do not pass any argument)." (interactive (list (if (and transient-mark-mode mark-active) 'region (outline-back-to-heading) (if current-prefix-arg nil 'subtree)))) (cond - ((eq children 'region) + ((eq which 'region) (outline-map-region 'outline-demote (region-beginning) (region-end))) - (children + (which (outline-map-region 'outline-demote (point) (save-excursion (outline-get-next-sibling) (point)))) From bd410bb07bb6794ff487543aae76530c74fa01a1 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 19:03:43 +0000 Subject: [PATCH 031/131] (server-start): Mention LEAVE-DEAD arg in the doc string. --- lisp/server.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/server.el b/lisp/server.el index beb065ef437..f03c802bb77 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -311,7 +311,8 @@ client \"editors\" can send your editing commands to this Emacs job. To use the server, set up the program `emacsclient' in the Emacs distribution as your standard \"editor\". -Prefix arg means just kill any existing server communications subprocess." +Optional argument LEAVE-DEAD (interactively, a prefix arg) means just +kill any existing server communications subprocess." (interactive "P") (when server-process ;; kill it dead! From a134cd5ee35a32f731cd53263a73f5f8847f9af6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Jan 2007 19:04:53 +0000 Subject: [PATCH 032/131] *** empty log message *** --- etc/ChangeLog | 5 +++++ lisp/ChangeLog | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/etc/ChangeLog b/etc/ChangeLog index 0c5e0742192..e06094d34b1 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-27 Kevin Rodgers + + * PROBLEMS: More details about disabling features that hamper + performance with slow X connections. + 2007-01-26 Vinicius Jose Latorre * ps-prin1.ps (printBackground): Fix background height. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 613bd9e6bcd..c7a776857c0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2007-01-27 Eli Zaretskii + + * server.el (server-start): Mention LEAVE-DEAD arg in the doc string. + +2007-01-27 Ben North + + * outline.el (outline-promote, outline-demote): Doc fix. Rename + the arg CHILDREN -> WHICH. + 2007-01-27 Michael Albinus * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set From 7d8efa7342472fd456da20eff94f3ef721b98f70 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 19:27:31 +0000 Subject: [PATCH 033/131] * files.el (hack-local-variables-confirm): Don't keep trying to read an event from an empty kbd macro. --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c7a776857c0..be45f701d76 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-27 Chong Yidong + + * files.el (hack-local-variables-confirm): Don't keep trying to + read an event from an empty kbd macro. + 2007-01-27 Eli Zaretskii * server.el (server-start): Mention LEAVE-DEAD arg in the doc string. From 5340648dac7b85c0344ab567b0bea35c5fc25026 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 27 Jan 2007 19:27:53 +0000 Subject: [PATCH 034/131] (hack-local-variables-confirm): Don't keep trying to read an event from an empty kbd macro. --- lisp/files.el | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index 1436899ef20..f671f1ae0c4 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2505,6 +2505,7 @@ n -- to ignore the local variables list.") ", or C-v to scroll"))) (goto-char (point-min)) (let ((cursor-in-echo-area t) + (executing-kbd-macro executing-kbd-macro) (exit-chars (if offer-save '(?! ?y ?n ?\s ?\C-g) '(?y ?n ?\s ?\C-g))) done) @@ -2512,11 +2513,17 @@ n -- to ignore the local variables list.") (message prompt) (setq char (read-event)) (if (numberp char) - (if (eq char ?\C-v) - (condition-case nil - (scroll-up) - (error (goto-char (point-min)))) - (setq done (memq (downcase char) exit-chars)))))) + (cond ((eq char ?\C-v) + (condition-case nil + (scroll-up) + (error (goto-char (point-min))))) + ;; read-event returns -1 if we are in a kbd + ;; macro and there are no more events in the + ;; macro. In that case, attempt to get an + ;; event interactively. + ((and executing-kbd-macro (= char -1)) + (setq executing-kbd-macro nil)) + (t (setq done (memq (downcase char) exit-chars))))))) (setq char (downcase char)) (when (and offer-save (= char ?!) unsafe-vars) (dolist (elt unsafe-vars) From 9b469b61cadb15629a29a6cde5ed1889a12637d2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 27 Jan 2007 19:53:25 +0000 Subject: [PATCH 035/131] add-log-current-defun): Skip the semicolon ``;'' for enum/union/struct/class definition. Revert change to call `forward-sexp' multiple times. --- lisp/add-log.el | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/lisp/add-log.el b/lisp/add-log.el index 748abefd400..08ce78d371d 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -828,6 +828,10 @@ Has a preference of looking backwards." ;; here is the position after the final }. (backward-sexp 1) (forward-sexp 1) + ;; Skip the semicolon ``;'' for + ;; enum/union/struct/class definition. + (if (= (char-after (point)) ?\;) + (forward-char 1)) (setq previous-defun-end (point))) (save-excursion @@ -921,19 +925,9 @@ Has a preference of looking backwards." ;; Include certain keywords if they ;; precede the name. (setq middle (point)) - ;; Single (forward-sexp -1) invocation is - ;; not enough for C++ member function defined - ;; as part of nested class and/or namespace - ;; like: - ;; - ;; void - ;; foo::bar::baz::bazz () - ;; { ... - ;; - ;; Here we have to move the point to - ;; the beginning of foo, not bazz. - (while (not (looking-back "\\(^\\|[ \t]\\)")) - (forward-sexp -1)) + ;; We tried calling `forward-sexp' in a loop + ;; but it causes inconsistency for C names. + (forward-sexp -1) ;; Is this C++ method? (when (and (< 2 middle) (string= (buffer-substring (- middle 2) From e14c5251324fe34a79b49e8577c032b92fe00290 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 27 Jan 2007 19:54:03 +0000 Subject: [PATCH 036/131] (awk-font-lock-keywords): Add "do". --- lisp/ChangeLog | 10 ++++++++++ lisp/obsolete/awk-mode.el | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index be45f701d76..42302ff9d38 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2007-01-27 Richard Stallman + + * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do". + +2007-01-27 Guanpeng Xu + + * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for + enum/union/struct/class definition. + Revert change to call `forward-sexp' multiple times. + 2007-01-27 Chong Yidong * files.el (hack-local-variables-confirm): Don't keep trying to diff --git a/lisp/obsolete/awk-mode.el b/lisp/obsolete/awk-mode.el index d85abc855f4..06376f96dc2 100644 --- a/lisp/obsolete/awk-mode.el +++ b/lisp/obsolete/awk-mode.el @@ -72,7 +72,7 @@ ;; ;; Keywords. (regexp-opt - '("BEGIN" "END" "break" "continue" "delete" "exit" "else" "for" + '("BEGIN" "END" "break" "continue" "delete" "do" "exit" "else" "for" "getline" "if" "next" "print" "printf" "return" "while") 'words) ;; ;; Builtins. From 787f4b5a12a39eec7362ed47ddb883f812479c52 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 27 Jan 2007 23:14:58 +0000 Subject: [PATCH 037/131] Update copyright with years from Emacs-21 to present. --- etc/ps-prin0.ps | 3 ++- etc/ps-prin1.ps | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/etc/ps-prin0.ps b/etc/ps-prin0.ps index 952c31d2b2e..ffa7d39dfe7 100644 --- a/etc/ps-prin0.ps +++ b/etc/ps-prin0.ps @@ -1,7 +1,8 @@ % === BEGIN ps-print prologue 0 % version: 6.0 -% Copyright (C) 2000, 2001 Free Software Foundation, Inc. +% Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. % % This file is part of GNU Emacs. % diff --git a/etc/ps-prin1.ps b/etc/ps-prin1.ps index 3ab3d6176f6..977b2e91f15 100644 --- a/etc/ps-prin1.ps +++ b/etc/ps-prin1.ps @@ -1,7 +1,8 @@ % === BEGIN ps-print prologue 1 % version: 6.1 -% Copyright (C) 2000, 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc. +% Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. % % This file is part of GNU Emacs. % From a6d231bb5dd34180b712e0abdccd5a15e07f3ea7 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 27 Jan 2007 23:17:19 +0000 Subject: [PATCH 038/131] (dired-listing-switches): Fix doc typo. --- lisp/dired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/dired.el b/lisp/dired.el index 508c5510c9c..7734a9bd69f 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -56,7 +56,7 @@ may contain even `F', `b', `i' and `s'. See also the variable `dired-ls-F-marks-symlinks' concerning the `F' switch. On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, some of the `ls' switches are not supported; see the doc string of -`insert-directory' on `ls-lisp.el' for more details." +`insert-directory' in `ls-lisp.el' for more details." :type 'string :group 'dired) From 61c4714ee784ee0fa9ea0e81588ed91838d47569 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 27 Jan 2007 23:18:37 +0000 Subject: [PATCH 039/131] (viper-mode): Fix info ref in doc string. --- lisp/emulation/viper.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el index e8f58db3ce9..ddd37b16cc2 100644 --- a/lisp/emulation/viper.el +++ b/lisp/emulation/viper.el @@ -532,7 +532,7 @@ If Viper is enabled, turn it off. Otherwise, turn it on." ;;;###autoload (defun viper-mode () - "Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Viper'." + "Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'." (interactive) (if (not noninteractive) (progn From 8a699aa88f1262be97f648011196204c1cde0c2b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 27 Jan 2007 23:30:36 +0000 Subject: [PATCH 040/131] Add FSF Copyright and GNU GPL notice. Copyright years copied from emacs-lisp-intro.texi, modulo the stated creation date of each file. --- lispintro/cons-1.eps | 20 ++++++++++++++++++++ lispintro/cons-2.eps | 20 ++++++++++++++++++++ lispintro/cons-3.eps | 20 ++++++++++++++++++++ lispintro/cons-4.eps | 20 ++++++++++++++++++++ lispintro/cons-5.eps | 20 ++++++++++++++++++++ lispintro/drawers.eps | 20 ++++++++++++++++++++ lispintro/lambda-1.eps | 20 ++++++++++++++++++++ lispintro/lambda-2.eps | 20 ++++++++++++++++++++ lispintro/lambda-3.eps | 20 ++++++++++++++++++++ 9 files changed, 180 insertions(+) diff --git a/lispintro/cons-1.eps b/lispintro/cons-1.eps index 6ec005c7cb0..ea2c4168956 100644 --- a/lispintro/cons-1.eps +++ b/lispintro/cons-1.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/cons-2.eps b/lispintro/cons-2.eps index bad0c75e6e2..b6fb796b452 100644 --- a/lispintro/cons-2.eps +++ b/lispintro/cons-2.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/cons-3.eps b/lispintro/cons-3.eps index 64e6e58f4e6..ea3f8d4c80d 100644 --- a/lispintro/cons-3.eps +++ b/lispintro/cons-3.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/cons-4.eps b/lispintro/cons-4.eps index 04e9706fb66..80947b45a8e 100644 --- a/lispintro/cons-4.eps +++ b/lispintro/cons-4.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/cons-5.eps b/lispintro/cons-5.eps index 83a17d5e3e1..a49bb062c16 100644 --- a/lispintro/cons-5.eps +++ b/lispintro/cons-5.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/drawers.eps b/lispintro/drawers.eps index 9bfc5aa8a7e..b0f2f64e0a9 100644 --- a/lispintro/drawers.eps +++ b/lispintro/drawers.eps @@ -9,6 +9,26 @@ %%EndComments %%BeginProlog +% Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 53 dict def tgifdict begin diff --git a/lispintro/lambda-1.eps b/lispintro/lambda-1.eps index ef5dddd91e0..14780fefe76 100644 --- a/lispintro/lambda-1.eps +++ b/lispintro/lambda-1.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/lambda-2.eps b/lispintro/lambda-2.eps index 38f7dba9f06..5d2717342ac 100644 --- a/lispintro/lambda-2.eps +++ b/lispintro/lambda-2.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin diff --git a/lispintro/lambda-3.eps b/lispintro/lambda-3.eps index e94af70dec6..4f16e9d9185 100644 --- a/lispintro/lambda-3.eps +++ b/lispintro/lambda-3.eps @@ -7,6 +7,26 @@ % Due to bugs in Transcript, the 'PS-Adobe-' stuff is omitted from line 1 % +% Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +% Free Software Foundation, Inc. +% +% This file is part of GNU Emacs. +% +% GNU Emacs is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 2, or (at your option) +% any later version. +% +% GNU Emacs is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with GNU Emacs; see the file COPYING. If not, write to +% the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +% Boston, MA 02110-1301, USA. + /tgifdict 132 dict def tgifdict begin From f202188558d3d92985e7fe59e10f6cadeddd0ee1 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 27 Jan 2007 23:44:56 +0000 Subject: [PATCH 041/131] *** empty log message *** --- admin/FOR-RELEASE | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 4ae30b70e84..7a841b1cd37 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -31,6 +31,10 @@ sk Miroslav Vaško No response Reminders sent out on 2006-06-08. +Note: regardless of the above, the following files need to be +regenerated to get updated copyright notices: sk-refcard.ps, +pl-refcard.ps, cs-refcard.ps. + ** Send an email to the various distributions, including the GNOME and KDE projects, to use the new Emacs icons in etc/images/icons. From 82be670e564c4edae5d5fa2cb7a8c70775838660 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:05:32 +0000 Subject: [PATCH 042/131] Add FSF copyright and GPL. --- admin/quick-install-emacs | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index 2167b8ee2d1..a6e70120e6d 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs @@ -1,9 +1,33 @@ #!/bin/sh -# quick-install-emacs -- do a halfway-decent job of installing emacs quickly -# Written by Miles Bader +### quick-install-emacs --- do a halfway-decent job of installing emacs quickly + +## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 +## Free Software Foundation, Inc. + +## Author: Miles Bader + +## This file is part of GNU Emacs. + +## GNU Emacs is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2, or (at your option) +## any later version. + +## GNU Emacs is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. + +## You should have received a copy of the GNU General Public License +## along with GNU Emacs; see the file COPYING. If not, write to the +## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +## Boston, MA 02110-1301, USA. + +### Commentary: + +## This script is mainly intended for emacs maintainer or pretesters who +## install emacs very often. See the --help output for more details. -# This script is mainly intended for emacs maintainer or pretesters who -# install emacs very often. See the --help output for more details. PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse' PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin' From e74033429f74f71fc7fecbbf02640169323a309b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:16:56 +0000 Subject: [PATCH 043/131] This "Stallman" fellow has graciously assigned copyright to the FSF. --- etc/NEWS.1-17 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/NEWS.1-17 b/etc/NEWS.1-17 index 4b0a210931e..cb8e28d5f96 100644 --- a/etc/NEWS.1-17 +++ b/etc/NEWS.1-17 @@ -1,5 +1,5 @@ GNU Emacs NEWS -- history of user-visible changes. 26-Mar-1986 -Copyright (C) 1985, 1986, 2006, 2007 Richard M. Stallman. +Copyright (C) 1985, 1986, 2006, 2007 Free Software Foundation, Inc. See the end for copying conditions. This file is about changes in emacs versions 1 through 17. @@ -2511,7 +2511,7 @@ Lisp programming changes ---------------------------------------------------------------------- Copyright information: -Copyright (C) 1985, 1986, 2006, 2007 Richard M. Stallman +Copyright (C) 1985, 1986, 2006, 2007 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the From b7ef07a067d3886918b27268c69a360a0766409b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:18:41 +0000 Subject: [PATCH 044/131] Update embedded copyright notice with years from Emacs-21 to present. --- etc/edt-user.doc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/edt-user.doc b/etc/edt-user.doc index af0ffd716be..c99bb83a364 100644 --- a/etc/edt-user.doc +++ b/etc/edt-user.doc @@ -823,7 +823,8 @@ G-C-\: Split Window | FNDNXT | Yank | CUT | ;;; ;;; For GNU Emacs 19 and Above ;;; -;; Copyright (C) 1986, 1992, 1993, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1986, 1992, 1993, 2000, 2001, 2002, 2003, 2004, 2005, +;; 2006, 2007 Free Software Foundation, Inc. ;; Author: Kevin Gallagher ;; Maintainer: Kevin Gallagher From e2916e48cb3a93d2c5a15570e0fd433d670138b1 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:28:01 +0000 Subject: [PATCH 045/131] Add FSF copyright and GPL. Copyright years from those where this file has been in public Emacs CVS. [email from rms, 2007/1/22 "Copyright Years"] --- etc/emacs.bash | 53 +++++++++++++++++++++++++++++++++++++------------- 1 file changed, 39 insertions(+), 14 deletions(-) diff --git a/etc/emacs.bash b/etc/emacs.bash index c482e82b361..2589c784a87 100644 --- a/etc/emacs.bash +++ b/etc/emacs.bash @@ -1,17 +1,41 @@ -# This defines a bash command named `edit' which contacts/resumes an -# existing emacs or starts a new one if none exists. -# -# One way or another, any arguments are passed to emacs to specify files -# (provided you have loaded `resume.el'). -# -# This function assumes the emacs program is named `emacs' and is somewhere -# in your load path. If either of these is not true, the most portable -# (and convenient) thing to do is to make an alias called emacs which -# refers to the real program, e.g. -# -# alias emacs=/usr/local/bin/gemacs -# -# Written by Noah Friedman. +### emacs.bash --- contact/resume an existing Emacs, or start a new one + +## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 +## Free Software Foundation, Inc. + +## Author: Noah Friedman + +## This file is part of GNU Emacs. + +## GNU Emacs is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2, or (at your option) +## any later version. + +## GNU Emacs is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. + +## You should have received a copy of the GNU General Public License +## along with GNU Emacs; see the file COPYING. If not, write to the +## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +## Boston, MA 02110-1301, USA. + +### Commentary: + +## This defines a bash command named `edit' which contacts/resumes an +## existing emacs or starts a new one if none exists. + +## One way or another, any arguments are passed to emacs to specify files +## (provided you have loaded `resume.el'). + +## This function assumes the emacs program is named `emacs' and is somewhere +## in your load path. If either of these is not true, the most portable +## (and convenient) thing to do is to make an alias called emacs which +## refers to the real program, e.g. +## +## alias emacs=/usr/local/bin/gemacs function edit () { @@ -44,3 +68,4 @@ function edit () # arch-tag: 1e1b74b9-bf2c-4b23-870f-9eebff7515cb +### emacs.bash ends here From d1e4cefd0beefa7e5997f213c374ff5a1056bdab Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:46:46 +0000 Subject: [PATCH 046/131] Add missing Copyright header. Years from date of installation in public Emacs CVS to present. [email from rms, 2007/1/22, "Copyright years": "That is copyright FSF. Whoever added that failed to put in the proper copyright notice."] --- lib-src/b2m.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib-src/b2m.pl b/lib-src/b2m.pl index 225c272587f..39c5901348f 100644 --- a/lib-src/b2m.pl +++ b/lib-src/b2m.pl @@ -2,6 +2,9 @@ # b2m.pl - Script to convert a Babyl file to an mbox file +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 +# Free Software Foundation, Inc. + # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or From bca2d2b5009a7e6ee13bb37ac08f16a2fcfcb758 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 00:58:59 +0000 Subject: [PATCH 047/131] Add Copyright and GPL. Years from date of installation in public Emacs CVS to present. [email from rms, 2007/1/22, "Copyright years": "We can add an FSF copyright notice and permission notice to that file."] --- mac/Emacs.app/Contents/Info.plist | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/mac/Emacs.app/Contents/Info.plist b/mac/Emacs.app/Contents/Info.plist index d03123cc3cd..c27500678b8 100644 --- a/mac/Emacs.app/Contents/Info.plist +++ b/mac/Emacs.app/Contents/Info.plist @@ -1,3 +1,25 @@ + + From 222b4fde761a9096a200dba400e05993475c24fe Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 01:13:25 +0000 Subject: [PATCH 048/131] Initial version. --- msdos/COPYING.DJ | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ msdos/ChangeLog | 4 ++++ 2 files changed, 53 insertions(+) create mode 100644 msdos/COPYING.DJ diff --git a/msdos/COPYING.DJ b/msdos/COPYING.DJ new file mode 100644 index 00000000000..e2aef74b931 --- /dev/null +++ b/msdos/COPYING.DJ @@ -0,0 +1,49 @@ +This is the file "COPYING.DJ". It does NOT apply to any sources or +binaries copyrighted by UCB Berkeley, the Free Software Foundation, or +any other agency besides DJ Delorie and others who have agreed to +allow their sources to be distributed under these terms. + + Copyright Information for sources and executables that are marked + Copyright (C) DJ Delorie + 334 North Rd + Deerfield NH 03037-1110 + +This document is Copyright (C) DJ Delorie and may be distributed +verbatim, but changing it is not allowed. + +Source code copyright DJ Delorie is distributed under the terms of the +GNU General Public Licence, with the following exceptions: + +* Sources used to build crt0.o, gcrt0.o, libc.a, libdbg.a, and + libemu.a are distributed under the terms of the GNU Library General + Public License, rather than the GNU GPL. + +* Any existing copyright or authorship information in any given source + file must remain intact. If you modify a source file, a notice to that + effect must be added to the authorship information in the source file. + +* Runtime binaries, as provided by DJ in DJGPP, may be distributed + without sources ONLY if the recipient is given sufficient information + to obtain a copy of djgpp themselves. This primarily applies to + go32-v2.exe, emu387.dxe, and stubedit.exe. + +* Runtime objects and libraries, as provided by DJ in DJGPP, when + linked into an application, may be distributed without sources ONLY + if the recipient is given sufficient information to obtain a copy of + djgpp themselves. This primarily applies to crt0.o and libc.a. + +----- + +Changes to source code copyright BSD, FSF, or others, by DJ Delorie +fall under the terms of the original copyright. Such files usually +have multiple copyright notices in them. + +A copy of the files "COPYING" and "COPYING.LIB" are included with this +document. If you did not receive a copy of these files, you may +obtain one from whence this document was obtained, or by writing: + + Free Software Foundation, Inc. + 51 Franklin Street, + Fifth Floor, + Boston, MA 02110-1301, + USA diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 52fc89f1557..0142645728f 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog @@ -1,3 +1,7 @@ +2007-01-28 Glenn Morris + + * COPYING.DJ: New file. + 2006-12-04 Eli Zaretskii * sed2v2.inp (HAVE_SYNC): Define. From b0846b12df8d2be669394f7e72684a3df20bb5af Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 01:19:57 +0000 Subject: [PATCH 049/131] Remove Zaretskii copyright, based on email discussion with eliz@gnu.org, dj@delorie.com, rms@gnu.org (2007/1, "Copyright years"). --- msdos/is_exec.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/msdos/is_exec.c b/msdos/is_exec.c index 4da0ec35c56..1c3a00daa01 100644 --- a/msdos/is_exec.c +++ b/msdos/is_exec.c @@ -8,11 +8,6 @@ * two bytes of the file are tested for known signatures of executable * files. * - * Copyright (c) 1994 Eli Zaretskii - * - * This software may be used freely so long as this copyright notice is - * left intact. There is no warranty on this software. - * */ #include From 540e7c721e51dc3e4828cd7fa5b9627b94387492 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 02:19:00 +0000 Subject: [PATCH 050/131] Grammar fix. --- leim/SKK-DIC/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leim/SKK-DIC/README b/leim/SKK-DIC/README index f2a6313bc98..e3b76e0832e 100644 --- a/leim/SKK-DIC/README +++ b/leim/SKK-DIC/README @@ -1,4 +1,4 @@ -The file SKK-JISYO.L is a verbatim copy of what distributed with SKK +The file SKK-JISYO.L is a verbatim copy of that distributed with SKK Ver.8.6. The author of SKK is Masahiko Sato . SKK is free software distributed under the terms of the GNU General Public License. From 5c336239ffd1567e19749a337ec38c788aa320e7 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 02:31:47 +0000 Subject: [PATCH 051/131] Grammar fixes. --- leim/CXTERM-DIC/README | 12 ++++++------ leim/MISC-DIC/README | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/leim/CXTERM-DIC/README b/leim/CXTERM-DIC/README index 43f397dff3e..6714459c2ee 100644 --- a/leim/CXTERM-DIC/README +++ b/leim/CXTERM-DIC/README @@ -1,11 +1,11 @@ All *.tit files in this directory are dictionary files to use with the program cxterm. Their source and copyright status are categorised -into these four. +into these four groups. (1) QJ-b5.tit (renamed from .../cxterm/dict/big5/QJ.tit) QJ.tit (copied from .../cxterm/dict/gb/QJ.tit) -These are verbatim copies of what included in the directory +These are verbatim copies of those included in the directory contrib/clients/cxterm of the distribution of X11R6. Each file contains a license notice. @@ -14,10 +14,10 @@ contains a license notice. SW.tit (copied from .../cxterm/dict/gb/SW.tit) TONEPY.tit (copied from .../cxterm/dict/gb/TONEPY.tit) -These are verbatim copies of what included in the directory +These are verbatim copies of those included in the directory contrib/clients/cxterm of the distribution of X11R6. As those files themselves don't contain license notices, the section 6 of the file -.../cxterm/README should cover them. +.../cxterm/README should cover them: ============================================================ 6. COPYRIGHTS AND TERMS @@ -47,12 +47,12 @@ purpose. It is provided "as is" without express or implied warranty. ETZY.tit ZOZY.tit -These are the versions modified by the original authors from what +These are versions modified by the original authors from those distributed with X11R5 to include proper copyright notices. Each file contains a license notice. (4) ECDICT.tit, Punct-b5.tit, Punct.tit -These are verbatim copies of what distributed at +These are verbatim copies of those distributed at ftp://ftp.ifcss.org/pub/software/. Each file contains a license notice. diff --git a/leim/MISC-DIC/README b/leim/MISC-DIC/README index a8d7c0578aa..5c5aef93ce9 100644 --- a/leim/MISC-DIC/README +++ b/leim/MISC-DIC/README @@ -1,29 +1,29 @@ The source and copyright status of dictionary files in this directory -are categorised into these three. +are categorised into these three groups. (1) cangjie-table.b5 cangjie-table.cns -These are verbatim copies of what distributed by the author Christian +These are verbatim copies of those distributed by the author Christian Wittern himself. Each file contains a license notice. (2) CTLau.html CTLau-b5.html -These are verbatim copies of what distributed at the authors home page - Each file contains a license +These are verbatim copies of those distributed at the author's home page +. Each file contains a license notice. (3) pinyin.map ziranma.cin -These are verbatim copies of what distributed with a free packaged +These are verbatim copies of those distributed with a free package called CCE at: http://ftp.debian.org/debian/dists/potato/main /source/utils/cce_0.36.orig.tar.gz As those files themselves don't contain license notices, the -copyright/license notice of the package itself should cover them. +copyright/license notice of the package itself should cover them: ============================================================ Copyright (C) 1999, Rui He, herui@cs.duke.edu From 571975c0b8434742a0680c3f522017608255947c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 02:51:26 +0000 Subject: [PATCH 052/131] Initial version. --- admin/notes/copyright | 196 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 admin/notes/copyright diff --git a/admin/notes/copyright b/admin/notes/copyright new file mode 100644 index 00000000000..f139d7055ba --- /dev/null +++ b/admin/notes/copyright @@ -0,0 +1,196 @@ +NOTES ON COPYRIGHTS AND LICENSES + +Some terminology: + +A "copyright notice" consists of one or a few lines of this format: +"Copyright (C) 2006, 2007 Free Software Foundation, Inc." + +A "license notice" is a statement of permissions, and is usually much +longer, eg the text "GNU Emacs is free software...". + + +Every non-trivial file distributed through the Emacs CVS should be +self-explanatory in terms of copyright and license. This includes +files that are not distributed in Emacs releases (for example, the +admin/ directory), because the whole Emacs CVS is publicly +available. + +The definition of triviality is a little vague, but a rule of thumb is +that any file with less than 15 lines of actual content is trivial. If +a file is auto-generated (eg ldefs-boot.el) from another one in the +CVS, then it does not really matter about adding a copyright statement +to the generated file. + +The years in the copyright notice should be updated every year (see +file "years" in this directory). The PS versions of refcards etc +should display copyright notices (an exception to the rule about +"generated" files), but these can just display the latest year. The +full list of years should be kept in comments in the source file. If +these are distributed in CVS, check in a regenerated version when the +tex files are updated. + +Copyright changes should be propagated to any associated repositories +(eg Gnus, MH-E), but I think in every case this happens automatically +(?). + +All README (and other such text files) that are non-trivial and were +added by Emacs developers need copyright and copying permission +statements (see eg INSTALL in the top-level directory). + +All images files that allow for comments should have copyright and +license statements. Whether or not this is possible, the information +should be recorded in a README file in each directory with images. + +When installing a file with an "unusual" license (after checking first +it is ok), put a copy of the copyright and license in the file (if +possible. It's ok if this makes the file incompatible with its +original format, if it can still be used by Emacs), or in a README +file in the relevant directory. + +The vast majority of files are copyright FSF and distributed under the +GPL. A few files (mainly related to language and charset support) are +copyright AIST alone, or both AIST and FSF. (Contact Kenichi Handa +with questions about legal issues in such files.) In all these cases, +the copyright years in each file should be updated each year. + +There are some exceptions to the points in the previous paragraph, and +these are listed below for reference, together with any files where +the copyright needs to be updated in "unusual" ways. + +If you find any other such cases, please consult to check they are ok, +and note them in this file. This includes missing copyright notices, +and "odd" copyright holders. In most cases, individual authors should +not appear in copyright statements. Either the copyright has been +assigned (check copyright.list) to the FSF (in which case the original +author should be removed and the year(s) transferred to the FSF); or +else it is possible the file should not be in Emacs at all (please +report!). + +[For reference, most of these points were established via email with +rms, 2007/1, "Copyright years".] + + +/install-sh +lispintro/install-sh + - this file is copyright MIT, which is OK. Leave the copyright alone. + +etc/edt-user.doc + - update BOTH notices in this file + +leim/CXTERM-DIC/4Corner.tit, ARRAY30.tit, [CCDOSPY.tit], ECDICT.tit, +ETZY.tit, [PY-b5.tit], Punct-b5.tit, Punct.tit, QJ-b5.tit, QJ.tit, +[SW.tit, TONEPY.tit,] ZOZY.tit + - leave the copyrights alone. + +leim/MISC-DIC/CTLau-b5.html, CTLau.html, cangjie-table.b5, cangjie-table.cns, +[pinyin.map, ziranma.cin] + - leave the copyright alone. + +leim/SKK-DIC/SKK-JISYO.L +ja-dic/ja-dic.el + (the latter is auto-generated from the former). Leave the copyright alone. + +lib-src/etags.c + - this has a copyright Ken Arnold. We are still deciding what should + be done here (see below). + +lib-src/getopt1.c, getopt_int.h + - these are from the GNU C library. Leave the copyrights alone. + +lispref/doclicense.texi +man/doclicense.texi + - leave the copyright alone in this imported file. + +lisp/net/tramp.el + - there are also copyrights in the body of the file. Update these too. + +msdos/is_exec.c, sigaction.c + - these files are copyright DJ Delorie. Leave the copyrights alone. + +src/gmalloc.c + - contains numerous copyrights from the GNU C library. Leave them alone. + + +*** These are copyright issues still to be addressed: + + +All README (and other such files) that are non-trivial and were added +by Emacs developers need copyright statements and copying permissions +to be added. + + +All images files that allow for comments should have copyright and +license statements added. Whether or not this is possible, the +information should be recorded in a README file in each directory with +images. + + +admin/check-doc-strings + Author is Martin Buchholz, but no assignment from him on file, and + rms has no way to reach him. +admin/make-announcement - no copyright +admin/nt/makedist.bat - no copyright +etc/ms-kermit - no copyright, but ms-7bkermit has one +etc/e/eterm-color.ti - no copyright + rms: "I think that is not copyrightable under the merger doctrine + because the entries are all forced. At least that is the case in the + US; I am not sure whether we can rely on that in general." + +For the above files, mail sent froam rms to Matthew (Martin?) Norwood +asking what to do (via Eben Moglen), 2007/1/22 ("Copyright years"). + + +etc/gnus-refcard.tex + I (rgm) think the "Gnus Bugfixing Girls + Boys" copyright should + probably be removed, but it may be ok (waiting for rms) + + +etc/orgcard.tex - no Rooke in copyright.list + rms will talk with Org mode author about this. + + +etc/sk-refcard.ps, pl-refcard.ps, cs-refcard.ps +These refcards need to be regenerated (by those with suitable TeX +setups) to get updated copyrights. + + +leim/CXTERM-DIC/CCDOSPY.tit, PY-b5.tit, SW.tit, TONEPY.tit +leim/MISC-DIC/pinyin.map, ziranma.cin + The copyright and license is stated in the README file, but we may as + well copy them into the files themselves (possibly at the expense of + making them incompatible with their original formats, but they will + still be usable by Emacs). [Kenichi Handa] + + +lib-src/etags.c - no 'k.* arnold' in copyright.list' + rms: "That is ok, in principle. I used free code released by Ken + Arnold as the starting point. However, it may be that we need to get + and insert whatever his license was for his code." + + +lwlib/lwlib-int.h, lwlib.h - no copyright +lwlib/Makefile.in, lwlib-utils.c, lwlib.c - copyright Lucid +lwlib/lwlib-Xaw.c - copyright Chuck Thompson +lwlib/lwlib.c - copyright Lucid, but FSF copyright was added in 2002 - + was that correct? + rms: "I asked Matthew Norwood about these, I believe." + + +msdos/ + - do we need to add COPYING.LIB (because COPYING.DJ refers to it)? + + +oldXMenu/ + - should there be any FSF copyrights at all in here? Some were added + in 2005, without licence notices. Was this right? +oldXMenu/Makefile.in, Makefile, Imakefile, descrip.mms, insque.c + - issues described in mail to rms, 2006/12/17. +rms: "I have asked for lawyer's advice about these." + + +src/acldef.h, chpdef.h, gnu.h, ndir.h +src/m/mips4.h, news-r6.h, news-risc.h, pmax.h +src/s/aix3-2.h, bsd386.h, hpux8.h, hpux9.h, irix4-0.h, irix5-0.h, +isc2-2.h, netbsd.h, osf1.h, sol2-3.h, sunos4-0.h, umips.h, usg5-4-2.h + - all these (not obviously trivial) files are missing copyrights. + rms: "I should talk about these with Matthew Norwood." From a9c2d46a8f28668fb200fdcc862a7373cd79456a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 02:52:35 +0000 Subject: [PATCH 053/131] Move some stuff to new file "copyright". --- admin/notes/years | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/admin/notes/years b/admin/notes/years index b5e93f1406a..fe08fa9640a 100644 --- a/admin/notes/years +++ b/admin/notes/years @@ -1,5 +1,5 @@ How to Maintain Copyright Years for GNU Emacs - + (see also file "copyright" in this directory) "Our lawyer says it is ok if we add, to each file that has been in Emacs since Emacs 21 came out in 2001, all the subsequent years[1]. We don't @@ -20,24 +20,6 @@ For the refcards under etc/, it's ok to simply use the latest year notice, while maintaining the full list of years in the copyright notice in the comments. - -Please fix or report any non-trivial files that have "odd" copyright -notices. This includes missing copyright notices, and copyright -holders other than FSF (or AIST in some cases). In most cases, -individual authors should not appear in copyright statements. Either -the copyright has been assigned (check copyright.list) to the FSF (in -which case the original author should be removed and the year(s) -transferred to the FSF); or else it is possible the file should not be -in Emacs at all (please report!). - -When updating the copyright in a file (eg a .tex file) that generates -another file distributed with Emacs, don't forget to check in a -regenerated version of the target file. - -For auto-generated files (eg ldefs-boot.el), RMS says (20061211, -private mail): "Since they are automatically generated, it doesn't -really matter what they say." - ------------------------------------------------------------------------------ From d94114b2ace4b9b64be1762d2665d59a3295ea72 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 03:04:38 +0000 Subject: [PATCH 054/131] *** empty log message *** --- admin/FOR-RELEASE | 2 ++ admin/notes/copyright | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 7a841b1cd37..7618c0b864a 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -5,6 +5,8 @@ Tasks needed before the next release. not at the start of the file that are easy to miss, as in src/emacs.c. + See also the oustanding issues in admin/notes/copyright. + * TO BE DONE SHORTLY BEFORE RELEASE ** Check for widow and orphan lines in manuals; diff --git a/admin/notes/copyright b/admin/notes/copyright index f139d7055ba..0c2340fc54f 100644 --- a/admin/notes/copyright +++ b/admin/notes/copyright @@ -168,6 +168,11 @@ lib-src/etags.c - no 'k.* arnold' in copyright.list' and insert whatever his license was for his code." +lispref/back.texi, elisp-covers.texi, lay-flat.texi, +two-volume-cross-refs.txt, two.el + - add standard notices to any decided to be non-trivial. + + lwlib/lwlib-int.h, lwlib.h - no copyright lwlib/Makefile.in, lwlib-utils.c, lwlib.c - copyright Lucid lwlib/lwlib-Xaw.c - copyright Chuck Thompson @@ -176,6 +181,10 @@ lwlib/lwlib.c - copyright Lucid, but FSF copyright was added in 2002 - rms: "I asked Matthew Norwood about these, I believe." +man/back.texi, trampver.texi + - add standard notices to any decided to be non-trivial. + + msdos/ - do we need to add COPYING.LIB (because COPYING.DJ refers to it)? From 22e088c68f0e68f20d35aa1188516fdcb91b7298 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:05:17 +0000 Subject: [PATCH 055/131] (eval-expression): Don't use eval-last-sexp-print-value when inserting in buffer. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index ac97d53d3bf..8c03b919c59 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1079,7 +1079,7 @@ this command arranges for all errors to enter the debugger." (if eval-expression-insert-value (with-no-warnings (let ((standard-output (current-buffer))) - (eval-last-sexp-print-value (car values)))) + (prin1 (car values)))) (prog1 (prin1 (car values) t) (let ((str (eval-expression-print-format (car values)))) From e56b4640c2cf1103c85299c70750cc488627bf97 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:05:42 +0000 Subject: [PATCH 056/131] (vc-arch-file-id): Move with-current-buffer inside the if. --- lisp/vc-arch.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index f0eb85eebd8..0f02db0ba96 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el @@ -152,7 +152,7 @@ Only the value `maybe' can be trusted :-(." (with-temp-buffer (insert-file-contents idfile) (looking-at ".*[^ \n\t]") - (match-string 0))) + (match-string 0)) (with-current-buffer (find-file-noselect file) (save-excursion (goto-char (point-max)) @@ -161,7 +161,7 @@ Only the value `maybe' can be trusted :-(." (goto-char (point-min)) (re-search-forward vc-arch-tagline-re (+ (point) 1000) t))) (match-string 1) - (concat "./" (file-relative-name file (vc-arch-root file)))))))) + (concat "./" (file-relative-name file (vc-arch-root file))))))))) (defun vc-arch-tagging-method (file) (with-current-buffer From 5650acf81b80bdb1e8f181d9125e7e007303a0aa Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:07:01 +0000 Subject: [PATCH 057/131] (fancy-splash-text, normal-splash-screen): Mention C-g. --- lisp/startup.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lisp/startup.el b/lisp/startup.el index 138715e68ac..e2a80088a3e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1149,6 +1149,11 @@ Copying Conditions\tConditions for redistributing and changing Emacs Getting New Versions\tHow to obtain the latest version of Emacs More Manuals / Ordering Manuals Buying printed manuals from the FSF\n") (:face (variable-pitch :weight bold) + "To quit a partially entered command, type " + :face default + "Control-g" + :face variable-pitch + "." "Useful File menu items:\n" :face variable-pitch "Exit Emacs\t\t(Or type " @@ -1530,6 +1535,7 @@ Warning Warning!!! Pure space overflow !!!Warning Warning (progn (insert "\ You can do basic editing with the menu bar and scroll bar using the mouse. +To quit a partially entered command, type Control-g. Useful File menu items: Exit Emacs (or type Control-x followed by Control-c) From 7378b2f99549146ef3dc1180592cfa7111fb71c0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:08:51 +0000 Subject: [PATCH 058/131] (tutorial--default-keys): Check M-DEL, not `M-backspace'. Don't check `backspace'. (tutorial--find-changed-keys): Look up bindings in a temp buffer in Fundamental mode. --- lisp/tutorial.el | 179 ++++++++++++++++++++++++----------------------- 1 file changed, 91 insertions(+), 88 deletions(-) diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 18fa2f0d4cd..c446400d906 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -250,10 +250,9 @@ LEFT and RIGHT are the elements to compare." ;; * INSERTING AND DELETING ;; C-u 8 * to insert ********. - (delete-backward-char [backspace]) (delete-backward-char "\d") (delete-char [?\C-d]) - (backward-kill-word [(meta backspace)]) + (backward-kill-word [?\M-\d]) (kill-word [?\M-d]) (kill-line [?\C-k]) (kill-sentence [?\M-k]) @@ -422,90 +421,94 @@ where QUIET is t if this changed keybinding should be handled quietly. This is used by `tutorial--display-changes'." (let (changed-keys remark) - (dolist (kdf default-keys) - ;; The variables below corresponds to those with the same names - ;; described in the doc string. - (let* ((key (nth 1 kdf)) - (def-fun (nth 0 kdf)) - (def-fun-txt (format "%s" def-fun)) - (rem-fun (command-remapping def-fun)) - (key-fun (if (eq def-fun 'ESC-prefix) - (lookup-key global-map [27]) - (key-binding key))) - (where (where-is-internal (if rem-fun rem-fun def-fun)))) - (if where - (progn - (setq where (key-description (car where))) - (when (and (< 10 (length where)) - (string= (substring where 0 (length "")) - "")) - (setq where "the menus"))) - (setq where "")) - (setq remark nil) - (unless - (cond ((eq key-fun def-fun) - ;; No rebinding, return t - t) - ((and key-fun - (eq key-fun (command-remapping def-fun))) - ;; Just a remapping, return t - t) - ;; cua-mode specials: - ((and cua-mode - (or (and - (equal key [?\C-v]) - (eq key-fun 'cua-paste)) - (and - (equal key [?\C-z]) - (eq key-fun 'undo)))) - (setq remark (list "cua-mode, more info" 'cua-mode)) - nil) - ((and cua-mode - (or (and (eq def-fun 'ESC-prefix) - (equal key-fun - `(keymap - (118 . cua-repeat-replace-region))) - (setq def-fun-txt "\"ESC prefix\"")) - (and (eq def-fun 'mode-specific-command-prefix) - (equal key-fun - '(keymap - (timeout . copy-region-as-kill))) - (setq def-fun-txt "\"C-c prefix\"")) - (and (eq def-fun 'Control-X-prefix) - (equal key-fun - '(keymap (timeout . kill-region))) - (setq def-fun-txt "\"C-x prefix\"")))) - (setq remark (list "cua-mode replacement" 'cua-mode)) - (setq where "Same key") - nil) - ;; viper-mode specials: - ((and (boundp 'viper-mode-string) - (boundp 'viper-current-state) - (eq viper-current-state 'vi-state) - (or (and (eq def-fun 'isearch-forward) - (eq key-fun 'viper-isearch-forward)) - (and (eq def-fun 'isearch-backward) - (eq key-fun 'viper-isearch-backward)))) - ;; These bindings works as the default bindings, - ;; return t - t) - ((when normal-erase-is-backspace - (or (and (equal key [C-delete]) - (equal key-fun 'kill-word)) - (and (equal key [C-backspace]) - (equal key-fun 'backward-kill-word)))) - ;; This is the strange handling of C-delete and - ;; C-backspace, return t - t) - (t - ;; This key has indeed been rebound. Put information - ;; in `remark' and return nil - (setq remark - (list "more info" 'current-binding - key-fun def-fun key where)) - nil)) - (add-to-list 'changed-keys - (list key def-fun def-fun-txt where remark nil))))) + ;; Look up the bindings in a Fundamental mode buffer + ;; so we do not get fooled by some other major mode. + (with-temp-buffer + (fundamental-mode) + (dolist (kdf default-keys) + ;; The variables below corresponds to those with the same names + ;; described in the doc string. + (let* ((key (nth 1 kdf)) + (def-fun (nth 0 kdf)) + (def-fun-txt (format "%s" def-fun)) + (rem-fun (command-remapping def-fun)) + (key-fun (if (eq def-fun 'ESC-prefix) + (lookup-key global-map [27]) + (key-binding key))) + (where (where-is-internal (if rem-fun rem-fun def-fun)))) + (if where + (progn + (setq where (key-description (car where))) + (when (and (< 10 (length where)) + (string= (substring where 0 (length "")) + "")) + (setq where "the menus"))) + (setq where "")) + (setq remark nil) + (unless + (cond ((eq key-fun def-fun) + ;; No rebinding, return t + t) + ((and key-fun + (eq key-fun (command-remapping def-fun))) + ;; Just a remapping, return t + t) + ;; cua-mode specials: + ((and cua-mode + (or (and + (equal key [?\C-v]) + (eq key-fun 'cua-paste)) + (and + (equal key [?\C-z]) + (eq key-fun 'undo)))) + (setq remark (list "cua-mode, more info" 'cua-mode)) + nil) + ((and cua-mode + (or (and (eq def-fun 'ESC-prefix) + (equal key-fun + `(keymap + (118 . cua-repeat-replace-region))) + (setq def-fun-txt "\"ESC prefix\"")) + (and (eq def-fun 'mode-specific-command-prefix) + (equal key-fun + '(keymap + (timeout . copy-region-as-kill))) + (setq def-fun-txt "\"C-c prefix\"")) + (and (eq def-fun 'Control-X-prefix) + (equal key-fun + '(keymap (timeout . kill-region))) + (setq def-fun-txt "\"C-x prefix\"")))) + (setq remark (list "cua-mode replacement" 'cua-mode)) + (setq where "Same key") + nil) + ;; viper-mode specials: + ((and (boundp 'viper-mode-string) + (boundp 'viper-current-state) + (eq viper-current-state 'vi-state) + (or (and (eq def-fun 'isearch-forward) + (eq key-fun 'viper-isearch-forward)) + (and (eq def-fun 'isearch-backward) + (eq key-fun 'viper-isearch-backward)))) + ;; These bindings works as the default bindings, + ;; return t + t) + ((when normal-erase-is-backspace + (or (and (equal key [C-delete]) + (equal key-fun 'kill-word)) + (and (equal key [C-backspace]) + (equal key-fun 'backward-kill-word)))) + ;; This is the strange handling of C-delete and + ;; C-backspace, return t + t) + (t + ;; This key has indeed been rebound. Put information + ;; in `remark' and return nil + (setq remark + (list "more info" 'current-binding + key-fun def-fun key where)) + nil)) + (add-to-list 'changed-keys + (list key def-fun def-fun-txt where remark nil)))))) changed-keys)) (defun tutorial--key-description (key) @@ -621,7 +624,7 @@ with some explanatory links." (setq file-name (concat file-name ".tut"))) (expand-file-name file-name (tutorial--saved-dir)))) -(defun tutorial--remove-remarks() +(defun tutorial--remove-remarks () "Remove the remark lines that was added to the tutorial buffer." (save-excursion (goto-char (point-min)) @@ -908,7 +911,7 @@ string ids and values that are the language specific strings. See `get-lang-string' for more information.") -(defun get-lang-string(lang stringid &optional no-eng-fallback) +(defun get-lang-string (lang stringid &optional no-eng-fallback) "Get a language specific string for Emacs. In certain places Emacs can replace a string showed to the user with a language specific string. This function retrieves such strings. From 3205431dd032ed81c6c5203128b93e634b15fda0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:09:44 +0000 Subject: [PATCH 059/131] (image-type-header-regexps): Make GIF regex more specific. --- lisp/image.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/image.el b/lisp/image.el index 89db0bb1b1b..22fa704d220 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -36,7 +36,7 @@ (defconst image-type-header-regexps '(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm) ("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm) - ("\\`GIF8" . gif) + ("\\`GIF8[79]a" . gif) ("\\`\x89PNG\r\n\x1a\n" . png) ("\\`[\t\n\r ]*#define \\([a-z0-9]+\\)_width [0-9]+\n\ #define \\1_height [0-9]+\n\ From f61eed1d1a4d5dd089813d5e0323c8259791a68e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:11:24 +0000 Subject: [PATCH 060/131] (pp-eval-last-sexp): Don't eval here. --- lisp/emacs-lisp/pp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index 27134a14583..66abfdf2c6d 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el @@ -158,7 +158,7 @@ Ignores leading comment characters." (set-syntax-table stab) (if arg (insert (pp-to-string (eval exp))) - (pp-eval-expression (eval exp))))) + (pp-eval-expression exp)))) ;;; Test cases for quote ;; (pp-eval-expression ''(quote quote)) From bbc02d0063f2eb4f291449ef2e0449efea2ce6fd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:13:10 +0000 Subject: [PATCH 061/131] (fill-paragraph-function): Doc fix. (fill-paragraph): Bind fill-paragraph-function to t to avoid recursion. --- lisp/textmodes/fill.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index bd157316b4f..7318a52d8a9 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -52,7 +52,8 @@ A value of nil means that any change in indentation starts a new paragraph." (defvar fill-paragraph-function nil "Mode-specific function to fill a paragraph, or nil if there is none. -If the function returns nil, then `fill-paragraph' does its normal work.") +If the function returns nil, then `fill-paragraph' does its normal work. +A value of t means explicitly \"do nothing special\".") (defvar fill-paragraph-handle-comment t "Non-nil means paragraph filling will try to pay attention to comments.") @@ -761,7 +762,8 @@ If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling." (barf-if-buffer-read-only) (list (if current-prefix-arg 'full)))) ;; First try fill-paragraph-function. - (or (and (or fill-paragraph-function + (or (and (not (eq fill-paragraph-function t)) + (or fill-paragraph-function (and (minibufferp (current-buffer)) (= 1 (point-min)))) (let ((function (or fill-paragraph-function @@ -773,7 +775,7 @@ If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling." ;; fill-paragraph-handle-comment back to t explicitly or ;; return nil. (fill-paragraph-handle-comment nil) - fill-paragraph-function) + (fill-paragraph-function t)) (funcall function arg))) ;; Then try our syntax-aware filling code. (and fill-paragraph-handle-comment From a284cdbbeec879ced6157cd5d62a60c0d23e77ff Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:16:39 +0000 Subject: [PATCH 062/131] (Ftry_completion, Fall_completions, Fcompleting_read, Ftest_completion): Rename arg ALIST or TABLE to COLLECTION. --- src/minibuf.c | 182 +++++++++++++++++++++++++------------------------- 1 file changed, 92 insertions(+), 90 deletions(-) diff --git a/src/minibuf.c b/src/minibuf.c index 9c078a37b3d..95b1b7fe86c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1230,22 +1230,25 @@ minibuf_conform_representation (string, basis) } DEFUN ("try-completion", Ftry_completion, Stry_completion, 2, 3, 0, - doc: /* Return common substring of all completions of STRING in ALIST. -Each car of each element of ALIST (or each element if it is not a cons cell) -is tested to see if it begins with STRING. The possible matches may be + doc: /* Return common substring of all completions of STRING in COLLECTION. +Test each possible completion specified by COLLECTION +to see if it begins with STRING. The possible completions may be strings or symbols. Symbols are converted to strings before testing, see `symbol-name'. -All that match are compared together; the longest initial sequence -common to all matches is returned as a string. -If there is no match at all, nil is returned. -For a unique match which is exact, t is returned. +All that match STRING are compared together; the longest initial sequence +common to all these matches is the return value. +If there is no match at all, the return value is nil. +For a unique match which is exact, the return value is t. -If ALIST is a hash-table, all the string and symbol keys are the -possible matches. -If ALIST is an obarray, the names of all symbols in the obarray -are the possible matches. +If COLLECTION is an alist, the keys (cars of elements) are the +possible completions. If an element is not a cons cell, then the +element itself is the possible completion. +If COLLECTION is a hash-table, all the keys that are strings or symbols +are the possible completions. +If COLLECTION is an obarray, the names of all symbols in the obarray +are the possible completions. -ALIST can also be a function to do the completion itself. +COLLECTION can also be a function to do the completion itself. It receives three arguments: the values STRING, PREDICATE and nil. Whatever it returns becomes the value of `try-completion'. @@ -1253,23 +1256,23 @@ If optional third argument PREDICATE is non-nil, it is used to test each possible match. The match is a candidate only if PREDICATE returns non-nil. The argument given to PREDICATE is the alist element -or the symbol from the obarray. If ALIST is a hash-table, +or the symbol from the obarray. If COLLECTION is a hash-table, predicate is called with two arguments: the key and the value. Additionally to this predicate, `completion-regexp-list' is used to further constrain the set of candidates. */) - (string, alist, predicate) - Lisp_Object string, alist, predicate; + (string, collection, predicate) + Lisp_Object string, collection, predicate; { Lisp_Object bestmatch, tail, elt, eltstring; /* Size in bytes of BESTMATCH. */ int bestmatchsize = 0; /* These are in bytes, too. */ int compare, matchsize; - int type = (HASH_TABLE_P (alist) ? 3 - : VECTORP (alist) ? 2 - : NILP (alist) || (CONSP (alist) - && (!SYMBOLP (XCAR (alist)) - || NILP (XCAR (alist))))); + int type = (HASH_TABLE_P (collection) ? 3 + : VECTORP (collection) ? 2 + : NILP (collection) || (CONSP (collection) + && (!SYMBOLP (XCAR (collection)) + || NILP (XCAR (collection))))); int index = 0, obsize = 0; int matchcount = 0; int bindcount = -1; @@ -1278,18 +1281,18 @@ is used to further constrain the set of candidates. */) CHECK_STRING (string); if (type == 0) - return call3 (alist, string, predicate, Qnil); + return call3 (collection, string, predicate, Qnil); bestmatch = bucket = Qnil; zero = make_number (0); - /* If ALIST is not a list, set TAIL just for gc pro. */ - tail = alist; + /* If COLLECTION is not a list, set TAIL just for gc pro. */ + tail = collection; if (type == 2) { - alist = check_obarray (alist); - obsize = XVECTOR (alist)->size; - bucket = XVECTOR (alist)->contents[index]; + collection = check_obarray (collection); + obsize = XVECTOR (collection)->size; + bucket = XVECTOR (collection)->contents[index]; } while (1) @@ -1324,19 +1327,19 @@ is used to further constrain the set of candidates. */) break; else { - bucket = XVECTOR (alist)->contents[index]; + bucket = XVECTOR (collection)->contents[index]; continue; } } else /* if (type == 3) */ { - while (index < HASH_TABLE_SIZE (XHASH_TABLE (alist)) - && NILP (HASH_HASH (XHASH_TABLE (alist), index))) + while (index < HASH_TABLE_SIZE (XHASH_TABLE (collection)) + && NILP (HASH_HASH (XHASH_TABLE (collection), index))) index++; - if (index >= HASH_TABLE_SIZE (XHASH_TABLE (alist))) + if (index >= HASH_TABLE_SIZE (XHASH_TABLE (collection))) break; else - elt = eltstring = HASH_KEY (XHASH_TABLE (alist), index++); + elt = eltstring = HASH_KEY (XHASH_TABLE (collection), index++); } /* Is this element a possible completion? */ @@ -1389,7 +1392,7 @@ is used to further constrain the set of candidates. */) GCPRO4 (tail, string, eltstring, bestmatch); tem = type == 3 ? call2 (predicate, elt, - HASH_VALUE (XHASH_TABLE (alist), index - 1)) + HASH_VALUE (XHASH_TABLE (collection), index - 1)) : call1 (predicate, elt); UNGCPRO; } @@ -1498,19 +1501,22 @@ is used to further constrain the set of candidates. */) } DEFUN ("all-completions", Fall_completions, Sall_completions, 2, 4, 0, - doc: /* Search for partial matches to STRING in ALIST. -Each car of each element of ALIST (or each element if it is not a cons cell) -is tested to see if it begins with STRING. The possible matches may be + doc: /* Search for partial matches to STRING in COLLECTION. +Test each of the possible completions specified by COLLECTION +to see if it begins with STRING. The possible completions may be strings or symbols. Symbols are converted to strings before testing, see `symbol-name'. -The value is a list of all the strings from ALIST that match. +The value is a list of all the possible completions that match STRING. -If ALIST is a hash-table, all the string and symbol keys are the -possible matches. -If ALIST is an obarray, the names of all symbols in the obarray -are the possible matches. +If COLLECTION is an alist, the keys (cars of elements) are the +possible completions. If an element is not a cons cell, then the +element itself is the possible completion. +If COLLECTION is a hash-table, all the keys that are strings or symbols +are the possible completions. +If COLLECTION is an obarray, the names of all symbols in the obarray +are the possible completions. -ALIST can also be a function to do the completion itself. +COLLECTION can also be a function to do the completion itself. It receives three arguments: the values STRING, PREDICATE and t. Whatever it returns becomes the value of `all-completions'. @@ -1518,24 +1524,24 @@ If optional third argument PREDICATE is non-nil, it is used to test each possible match. The match is a candidate only if PREDICATE returns non-nil. The argument given to PREDICATE is the alist element -or the symbol from the obarray. If ALIST is a hash-table, +or the symbol from the obarray. If COLLECTION is a hash-table, predicate is called with two arguments: the key and the value. Additionally to this predicate, `completion-regexp-list' is used to further constrain the set of candidates. If the optional fourth argument HIDE-SPACES is non-nil, -strings in ALIST that start with a space +strings in COLLECTION that start with a space are ignored unless STRING itself starts with a space. */) - (string, alist, predicate, hide_spaces) - Lisp_Object string, alist, predicate, hide_spaces; + (string, collection, predicate, hide_spaces) + Lisp_Object string, collection, predicate, hide_spaces; { Lisp_Object tail, elt, eltstring; Lisp_Object allmatches; - int type = HASH_TABLE_P (alist) ? 3 - : VECTORP (alist) ? 2 - : NILP (alist) || (CONSP (alist) - && (!SYMBOLP (XCAR (alist)) - || NILP (XCAR (alist)))); + int type = HASH_TABLE_P (collection) ? 3 + : VECTORP (collection) ? 2 + : NILP (collection) || (CONSP (collection) + && (!SYMBOLP (XCAR (collection)) + || NILP (XCAR (collection)))); int index = 0, obsize = 0; int bindcount = -1; Lisp_Object bucket, tem, zero; @@ -1543,16 +1549,16 @@ are ignored unless STRING itself starts with a space. */) CHECK_STRING (string); if (type == 0) - return call3 (alist, string, predicate, Qt); + return call3 (collection, string, predicate, Qt); allmatches = bucket = Qnil; zero = make_number (0); - /* If ALIST is not a list, set TAIL just for gc pro. */ - tail = alist; + /* If COLLECTION is not a list, set TAIL just for gc pro. */ + tail = collection; if (type == 2) { - obsize = XVECTOR (alist)->size; - bucket = XVECTOR (alist)->contents[index]; + obsize = XVECTOR (collection)->size; + bucket = XVECTOR (collection)->contents[index]; } while (1) @@ -1585,19 +1591,19 @@ are ignored unless STRING itself starts with a space. */) break; else { - bucket = XVECTOR (alist)->contents[index]; + bucket = XVECTOR (collection)->contents[index]; continue; } } else /* if (type == 3) */ { - while (index < HASH_TABLE_SIZE (XHASH_TABLE (alist)) - && NILP (HASH_HASH (XHASH_TABLE (alist), index))) + while (index < HASH_TABLE_SIZE (XHASH_TABLE (collection)) + && NILP (HASH_HASH (XHASH_TABLE (collection), index))) index++; - if (index >= HASH_TABLE_SIZE (XHASH_TABLE (alist))) + if (index >= HASH_TABLE_SIZE (XHASH_TABLE (collection))) break; else - elt = eltstring = HASH_KEY (XHASH_TABLE (alist), index++); + elt = eltstring = HASH_KEY (XHASH_TABLE (collection), index++); } /* Is this element a possible completion? */ @@ -1659,7 +1665,7 @@ are ignored unless STRING itself starts with a space. */) GCPRO4 (tail, eltstring, allmatches, string); tem = type == 3 ? call2 (predicate, elt, - HASH_VALUE (XHASH_TABLE (alist), index - 1)) + HASH_VALUE (XHASH_TABLE (collection), index - 1)) : call1 (predicate, elt); UNGCPRO; } @@ -1686,19 +1692,14 @@ Lisp_Object Vminibuffer_completing_file_name; DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 8, 0, doc: /* Read a string in the minibuffer, with completion. PROMPT is a string to prompt with; normally it ends in a colon and a space. - -TABLE can be a list of strings, an alist, an obarray or a hash table; their -elements are tested to see if they begin with STRING. -TABLE can also be a function to do the completion itself; it receives -three arguments: the values STRING, PREDICATE and nil. -Whatever it returns becomes the value of `try-completion'. - -PREDICATE limits completion to a subset of TABLE. +COLLECTION can be a list of strings, an alist, an obarray or a hash table. +COLLECTION can also be a function to do the completion itself. +PREDICATE limits completion to a subset of COLLECTION. See `try-completion' and `all-completions' for more details - on completion, TABLE (called "alist" there), and PREDICATE. + on completion, COLLECTION, and PREDICATE. If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless - the input is (or completes to) an element of TABLE or is null. + the input is (or completes to) an element of COLLECTION or is null. If it is also not t, typing RET does not exit if it does non-null completion. If the input is null, `completing-read' returns DEF, or an empty string if DEF is nil, regardless of the value of REQUIRE-MATCH. @@ -1732,8 +1733,8 @@ If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits Completion ignores case if the ambient value of `completion-ignore-case' is non-nil. */) - (prompt, table, predicate, require_match, initial_input, hist, def, inherit_input_method) - Lisp_Object prompt, table, predicate, require_match, initial_input; + (prompt, collection, predicate, require_match, initial_input, hist, def, inherit_input_method) + Lisp_Object prompt, collection, predicate, require_match, initial_input; Lisp_Object hist, def, inherit_input_method; { Lisp_Object val, histvar, histpos, position; @@ -1745,7 +1746,7 @@ Completion ignores case if the ambient value of init = initial_input; GCPRO1 (def); - specbind (Qminibuffer_completion_table, table); + specbind (Qminibuffer_completion_table, collection); specbind (Qminibuffer_completion_predicate, predicate); specbind (Qminibuffer_completion_confirm, EQ (require_match, Qt) ? Qnil : require_match); @@ -1807,27 +1808,28 @@ Lisp_Object Fassoc_string (); DEFUN ("test-completion", Ftest_completion, Stest_completion, 2, 3, 0, doc: /* Return non-nil if STRING is a valid completion. Takes the same arguments as `all-completions' and `try-completion'. -If ALIST is a function, it is called with three arguments: +If COLLECTION is a function, it is called with three arguments: the values STRING, PREDICATE and `lambda'. */) - (string, alist, predicate) - Lisp_Object string, alist, predicate; + (string, collection, predicate) + Lisp_Object string, collection, predicate; { Lisp_Object regexps, tail, tem = Qnil; int i = 0; CHECK_STRING (string); - if ((CONSP (alist) && (!SYMBOLP (XCAR (alist)) || NILP (XCAR (alist)))) - || NILP (alist)) + if ((CONSP (collection) + && (!SYMBOLP (XCAR (collection)) || NILP (XCAR (collection)))) + || NILP (collection)) { - tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil); + tem = Fassoc_string (string, collection, completion_ignore_case ? Qt : Qnil); if (NILP (tem)) return Qnil; } - else if (VECTORP (alist)) + else if (VECTORP (collection)) { /* Bypass intern-soft as that loses for nil. */ - tem = oblookup (alist, + tem = oblookup (collection, SDATA (string), SCHARS (string), SBYTES (string)); @@ -1838,7 +1840,7 @@ the values STRING, PREDICATE and `lambda'. */) else string = Fstring_make_multibyte (string); - tem = oblookup (alist, + tem = oblookup (collection, SDATA (string), SCHARS (string), SBYTES (string)); @@ -1846,9 +1848,9 @@ the values STRING, PREDICATE and `lambda'. */) if (completion_ignore_case && !SYMBOLP (tem)) { - for (i = XVECTOR (alist)->size - 1; i >= 0; i--) + for (i = XVECTOR (collection)->size - 1; i >= 0; i--) { - tail = XVECTOR (alist)->contents[i]; + tail = XVECTOR (collection)->contents[i]; if (SYMBOLP (tail)) while (1) { @@ -1870,9 +1872,9 @@ the values STRING, PREDICATE and `lambda'. */) if (!SYMBOLP (tem)) return Qnil; } - else if (HASH_TABLE_P (alist)) + else if (HASH_TABLE_P (collection)) { - struct Lisp_Hash_Table *h = XHASH_TABLE (alist); + struct Lisp_Hash_Table *h = XHASH_TABLE (collection); i = hash_lookup (h, string, NULL); if (i >= 0) tem = HASH_KEY (h, i); @@ -1891,7 +1893,7 @@ the values STRING, PREDICATE and `lambda'. */) return Qnil; } else - return call3 (alist, string, predicate, Qlambda); + return call3 (collection, string, predicate, Qlambda); /* Reject this element if it fails to match all the regexps. */ if (CONSP (Vcompletion_regexp_list)) @@ -1912,8 +1914,8 @@ the values STRING, PREDICATE and `lambda'. */) /* Finally, check the predicate. */ if (!NILP (predicate)) { - return HASH_TABLE_P (alist) - ? call2 (predicate, tem, HASH_VALUE (XHASH_TABLE (alist), i)) + return HASH_TABLE_P (collection) + ? call2 (predicate, tem, HASH_VALUE (XHASH_TABLE (collection), i)) : call1 (predicate, tem); } else From eca456adcfd4d48e9f5273835ca5d7e275ee2532 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:19:16 +0000 Subject: [PATCH 063/131] (File Attributes): UID and GID can be floats. (Magic File Names): Explain why deferring all operations to the standard handler does not work. --- lispref/files.texi | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lispref/files.texi b/lispref/files.texi index 630eaca9c2a..f13888197c7 100644 --- a/lispref/files.texi +++ b/lispref/files.texi @@ -1157,11 +1157,12 @@ links, can be created by using the @code{add-name-to-file} function (@pxref{Changing Files}). @item -The file's @acronym{UID} as a string or an integer. If a string -value cannot be looked up, the integer value is returned. +The file's @acronym{UID}, normally as a string. However, if it does +not correspond to a named user, the value is an integer or a floating +point number. @item -The file's @acronym{GID} likewise. +The file's @acronym{GID}, likewise. @item The time of last access, as a list of two integers. @@ -2554,7 +2555,7 @@ whose match starts last in the file name gets precedence. This rule is chosen so that handlers for jobs such as uncompression are handled first, before handlers for jobs such as remote file access. -Here are the operations that a magic file name handler gets to handle: + Here are the operations that a magic file name handler gets to handle: @ifnottex @noindent @@ -2704,6 +2705,14 @@ avoids inefficiency, but its main purpose is for autoloaded handler functions, so that they won't be loaded except when they have real work to do. + Simply deferring all operations to the usual primitives does not +work. For instance, if the file name handler applies to +@code{file-exists-p}, then it must handle @code{load} itself, because +the usual @code{load} code won't work properly in that case. However, +if the handler uses the @code{operations} property to say it doesn't +handle @code{file-exists-p}, then it need not handle @code{load} +nontrivially. + @defvar inhibit-file-name-handlers This variable holds a list of handlers whose use is presently inhibited for a certain operation. From c446b0d3a97d0351d0ced2423e795b66ee4101b6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:20:41 +0000 Subject: [PATCH 064/131] (Coding Conventions): Clarify the tip about macros that define a function or a variable. --- lispref/tips.texi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lispref/tips.texi b/lispref/tips.texi index 331f0799e4b..5f4479a5fd3 100644 --- a/lispref/tips.texi +++ b/lispref/tips.texi @@ -210,7 +210,8 @@ Constructs that define a function or variable should be macros, not functions, and their names should start with @samp{def}. @item -Macros that define a function or variable should take the name to be +A macro that defines a function or variable should have a name that +starts with @samp{define-}. The macro should receive the name to be defined as the first argument. That will help various tools find the definition automatically. Avoid constructing the names in the macro itself, since that would confuse these tools. From d9380425737b3f16ed4766b7b696776d83d62691 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jan 2007 07:20:47 +0000 Subject: [PATCH 065/131] *** empty log message *** --- admin/FOR-RELEASE | 2 +- lisp/ChangeLog | 23 +++++++++++++++++++++++ lispref/ChangeLog | 9 +++++++++ src/ChangeLog | 6 ++++++ 4 files changed, 39 insertions(+), 1 deletion(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 7618c0b864a..a03ea3c83db 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -80,7 +80,7 @@ through the custom mechanism. ** jka-compr fails when default-directory is nonexistent. -** Tramp fails when default-directory is nonexistent. +** Binding print-circle to nil in compilation for certain files. * DOCUMENTATION diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 42302ff9d38..5e5e22ce4da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,26 @@ +2007-01-28 Richard Stallman + + * textmodes/fill.el (fill-paragraph-function): Doc fix. + (fill-paragraph): Bind fill-paragraph-function to t to avoid recursion. + + * emacs-lisp/pp.el (pp-eval-last-sexp): Don't eval here. + + * image.el (image-type-header-regexps): Make GIF regex more specific. + + * tutorial.el (tutorial--default-keys): Check M-DEL, not `M-backspace'. + Don't check `backspace'. + (tutorial--find-changed-keys): Look up bindings in a temp buffer + in Fundamental mode. + + * startup.el (fancy-splash-text, normal-splash-screen): + Mention C-g. + + * simple.el (eval-expression): Don't use eval-last-sexp-print-value + when inserting in buffer. + + * vc-arch.el (vc-arch-file-id): Move with-current-buffer + inside the if. + 2007-01-27 Richard Stallman * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do". diff --git a/lispref/ChangeLog b/lispref/ChangeLog index bb944e2879a..2d73fe08a96 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,12 @@ +2007-01-28 Richard Stallman + + * tips.texi (Coding Conventions): Clarify the tip about macros + that define a function or a variable. + + * files.texi (File Attributes): UID and GID can be floats. + (Magic File Names): Explain why deferring all operations to + the standard handler does not work. + 2007-01-23 Martin Rudalics * backups.texi (Reverting): Use "buffer" instead of "file" diff --git a/src/ChangeLog b/src/ChangeLog index 917377a10f5..dd133046747 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2007-01-28 Richard Stallman + + * minibuf.c (Ftry_completion, Fall_completions) + (Fcompleting_read, Ftest_completion): + Rename arg ALIST or TABLE to COLLECTION. + 2007-01-27 Chong Yidong * unexhp9k800.c: Remove due to lack of legal papers. From 306c24b561bdf8bcedfe8ceb2d9c1625d2fada46 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 28 Jan 2007 09:41:48 +0000 Subject: [PATCH 066/131] *** empty log message *** --- lisp/ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5e5e22ce4da..e1b073331ec 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2007-01-28 Nick Roberts + + * progmodes/gdb-ui.el (gdb-breakpoint-regexp): Declare earlier to + avoid compiler warning. + (gdb-var-update-handler-1): Consider that the MI field `in_scope' + might have values other than "true" or "false". + 2007-01-28 Richard Stallman * textmodes/fill.el (fill-paragraph-function): Doc fix. From 5754d11f61a8495c71fc5c666d926aff87095183 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 28 Jan 2007 09:42:23 +0000 Subject: [PATCH 067/131] (gdb-breakpoint-regexp): Declare earlier to avoid compiler warning. (gdb-var-update-handler-1): Consider that the MI field `in_scope' might have values other than "true" or "false". --- lisp/progmodes/gdb-ui.el | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 01e4fe7abe7..c2811a9658a 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -1788,6 +1788,9 @@ static char *magick[] = { "Face for disabled breakpoint icon in fringe." :group 'gud) +(defconst gdb-breakpoint-regexp + "\\([0-9]+\\).*?\\(?:point\\|catch\\s-+\\S-+\\)\\s-+\\S-+\\s-+\\(.\\)\\s-+") + ;; Put breakpoint icons in relevant margins (even those set in the GUD buffer). (defun gdb-info-breakpoints-custom () (let ((flag) (bptno)) @@ -1981,9 +1984,6 @@ static char *magick[] = { 'gdb-invalidate-breakpoints 'gdbmi-invalidate-breakpoints)) -(defconst gdb-breakpoint-regexp - "\\([0-9]+\\).*?\\(?:point\\|catch\\s-+\\S-+\\)\\s-+\\S-+\\s-+\\(.\\)\\s-+") - (defun gdb-toggle-breakpoint () "Enable/disable breakpoint at current line." (interactive) @@ -3436,14 +3436,26 @@ in_scope=\"\\(.*?\\)\".*?}") (let* ((varnum (match-string 1)) (var (assoc varnum gdb-var-list))) (when var - (if (string-equal (match-string 3) "false") - (setcar (nthcdr 5 var) 'out-of-scope) - (setcar (nthcdr 5 var) 'changed) - (setcar (nthcdr 4 var) - (read (match-string 2))))))) - (setq gdb-pending-triggers - (delq 'gdb-var-update gdb-pending-triggers)) - (gdb-speedbar-update)) + (let ((match (match-string 3))) + (cond ((string-equal match "false") + (setcar (nthcdr 5 var) 'out-of-scope)) + ((string-equal match "true") + (setcar (nthcdr 5 var) 'changed) + (setcar (nthcdr 4 var) + (read (match-string 2)))) +;; ((string-equal match "invalid") +;; (gdb-enqueue-input +;; (list +;; (if (eq (buffer-local-value +;; 'gud-minor-mode gud-comint-buffer) 'gdba) +;; (concat "server interpreter mi \"-var-delete " +;; varnum "\"\n") +;; (concat "-var-delete " varnum "\n")) +;; 'ignore))) + ))))) + (setq gdb-pending-triggers + (delq 'gdb-var-update gdb-pending-triggers)) + (gdb-speedbar-update)) ;; Registers buffer. ;; From 2f028807fdcf5d95f48c9d08279a02e7bc48586f Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 28 Jan 2007 19:39:44 +0000 Subject: [PATCH 068/131] * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly. (gamegrid-add-score-with-update-game-score-1): Allow local quits when calling update-game-score program. Remove unnecessary save-excursion. * play/tetris.el (tetris-new-shape): Stop drawing if game is over. --- lisp/ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e1b073331ec..d9b97e6c1e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2007-01-28 Chong Yidong + + * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly. + (gamegrid-add-score-with-update-game-score-1): Allow local quits + when calling update-game-score program. Remove unnecessary + save-excursion. + + * play/tetris.el (tetris-new-shape): Stop drawing if game is over. + 2007-01-28 Nick Roberts * progmodes/gdb-ui.el (gdb-breakpoint-regexp): Declare earlier to From d46b940851f2529a1ffd1cd198db2b158aa19b37 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 28 Jan 2007 19:39:58 +0000 Subject: [PATCH 069/131] (tetris-new-shape): Stop drawing if game is over. --- lisp/play/tetris.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/play/tetris.el b/lisp/play/tetris.el index 45e5af94ea0..53305a08e66 100644 --- a/lisp/play/tetris.el +++ b/lisp/play/tetris.el @@ -362,9 +362,9 @@ Element 0 is ignored." (setq tetris-pos-y 0) (if (tetris-test-shape) (tetris-end-game) - (tetris-draw-shape)) - (tetris-draw-next-shape) - (tetris-update-score)) + (tetris-draw-shape) + (tetris-draw-next-shape) + (tetris-update-score))) (defun tetris-draw-next-shape () (loop for y from 0 to 3 do From d33ca4d437218a26d9d85428b7046df19149535e Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 28 Jan 2007 19:40:31 +0000 Subject: [PATCH 070/131] (gamegrid-kill-timer): Cancel timer directly. (gamegrid-add-score-with-update-game-score-1): Allow local quits when calling update-game-score program. Remove unnecessary save-excursion. --- lisp/play/gamegrid.el | 63 ++++++++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index 41f04ea27cb..1a2b8c31ef4 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el @@ -420,7 +420,7 @@ static unsigned char gamegrid_bits[] = { (if gamegrid-timer (if (featurep 'itimer) (delete-itimer gamegrid-timer) - (timer-set-time gamegrid-timer '(0 0 0) nil))) + (cancel-timer gamegrid-timer))) (setq gamegrid-timer nil)) ;; ;;;;;;;;;;;;;;; high score functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -515,41 +515,42 @@ FILE is created there." (defun gamegrid-add-score-with-update-game-score-1 (file target score) (let ((default-directory "/") (errbuf (generate-new-buffer " *update-game-score loss*"))) - (apply - 'call-process - (append - (list - (expand-file-name "update-game-score" exec-directory) - nil errbuf nil - "-m" (int-to-string gamegrid-score-file-length) - "-d" (if gamegrid-shared-game-dir - (expand-file-name shared-game-score-directory) - (file-name-directory target)) - file - (int-to-string score) - (concat - (user-full-name) - " <" - (cond ((fboundp 'user-mail-address) - (user-mail-address)) - ((boundp 'user-mail-address) - user-mail-address) - (t "")) - "> " - (current-time-string))))) + ;; This can be called from a timer, so enable local quits. + (with-local-quit + (apply + 'call-process + (append + (list + (expand-file-name "update-game-score" exec-directory) + nil errbuf nil + "-m" (int-to-string gamegrid-score-file-length) + "-d" (if gamegrid-shared-game-dir + (expand-file-name shared-game-score-directory) + (file-name-directory target)) + file + (int-to-string score) + (concat + (user-full-name) + " <" + (cond ((fboundp 'user-mail-address) + (user-mail-address)) + ((boundp 'user-mail-address) + user-mail-address) + (t "")) + "> " + (current-time-string)))))) (if (buffer-modified-p errbuf) (progn (display-buffer errbuf) (error "Failed to update game score file")) (kill-buffer errbuf)) - (save-excursion - (let ((buf (find-buffer-visiting target))) - (if buf - (progn - (with-current-buffer buf - (revert-buffer nil t nil)) - (display-buffer buf)) - (find-file-read-only-other-window target)))))) + (let ((buf (find-buffer-visiting target))) + (if buf + (progn + (with-current-buffer buf + (revert-buffer nil t nil)) + (display-buffer buf)) + (find-file-read-only-other-window target))))) (defun gamegrid-add-score-insecure (file score &optional directory) (save-excursion From 98ef9fa49d97f2a24d905d22d67bf167fe15fc8a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 28 Jan 2007 20:46:53 +0000 Subject: [PATCH 071/131] (speedbar-make-specialized-keymap): Doc fix. --- lisp/ChangeLog | 4 ++++ lisp/speedbar.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d9b97e6c1e8..d18061d11f0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-28 Markus Triska + + * speedbar.el (speedbar-make-specialized-keymap): Doc fix. + 2007-01-28 Chong Yidong * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly. diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 1a5fc04ee3a..711957d9cd0 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -819,7 +819,7 @@ to toggle this value.") (defun speedbar-make-specialized-keymap () "Create a keymap for use with a speedbar major or minor display mode. -This basically creates a sparse keymap, and makes it's parent be +This basically creates a sparse keymap, and makes its parent be `speedbar-key-map'." (let ((k (make-sparse-keymap))) (set-keymap-parent k speedbar-key-map) From 1a012e8017dc33a26b5cb219a65fb07fd0058293 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 28 Jan 2007 21:40:03 +0000 Subject: [PATCH 072/131] Revert previous change while we figure out if it was correct. --- msdos/is_exec.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/msdos/is_exec.c b/msdos/is_exec.c index 1c3a00daa01..4da0ec35c56 100644 --- a/msdos/is_exec.c +++ b/msdos/is_exec.c @@ -8,6 +8,11 @@ * two bytes of the file are tested for known signatures of executable * files. * + * Copyright (c) 1994 Eli Zaretskii + * + * This software may be used freely so long as this copyright notice is + * left intact. There is no warranty on this software. + * */ #include From 176b179b51229d2fea57394325058d33a6bf5a43 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 28 Jan 2007 22:34:06 +0000 Subject: [PATCH 073/131] *** empty log message *** --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d18061d11f0..7d30691f1a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-28 Kim F. Storm + + * emulation/cua-base.el (cua-global-keymap, cua--region-keymap): + Declare earlier to avoid byte compiler warnings. + 2007-01-28 Markus Triska * speedbar.el (speedbar-make-specialized-keymap): Doc fix. From 5c4a60523827062803ab9a55b4325358225d66bf Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 28 Jan 2007 22:34:31 +0000 Subject: [PATCH 074/131] (cua-global-keymap, cua--region-keymap): Declare earlier to avoid byte compiler warnings. --- lisp/emulation/cua-base.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 9311bdc0613..0463b01b7e3 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -399,6 +399,9 @@ and after the region marked by the rectangle to search." (other :tag "Enabled" t)) :group 'cua) +(defvar cua-global-keymap) ; forward +(defvar cua--region-keymap) ; forward + (defcustom cua-rectangle-mark-key [(control return)] "Global key used to toggle the cua rectangle mark." :set #'(lambda (symbol value) From 0e66b003a748db190268cd6463cc48645a4481e1 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 29 Jan 2007 01:22:53 +0000 Subject: [PATCH 075/131] (byte-compile-disable-print-circle): New variable. (byte-compile-output-file-form): Bing print-circle to nil if byte-compile-output-file-form is not nil. (byte-compile-output-docform): Likewise. --- lisp/ChangeLog | 8 ++++++++ lisp/emacs-lisp/bytecomp.el | 10 ++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d30691f1a6..663be6b8607 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2007-01-29 Kenichi Handa + + * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): New + variable. + (byte-compile-output-file-form): Bing print-circle to nil if + byte-compile-output-file-form is not nil. + (byte-compile-output-docform): Likewise. + 2007-01-28 Kim F. Storm * emulation/cua-base.el (cua-global-keymap, cua--region-keymap): diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 4b31a0e6943..025d862c11d 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -296,6 +296,10 @@ When this option is true, if you load the compiled file and then move it, the functions you loaded will not be able to run.") ;;;###autoload(put 'byte-compile-dynamic 'safe-local-variable 'booleanp) +(defvar byte-compile-disable-print-circle nil + "If non-nil, disable `print-circle' on printing a byte-compiled code.") +;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) + (defcustom byte-compile-dynamic-docstrings t "*If non-nil, compile doc strings for lazy access. We bury the doc strings of functions and variables @@ -2003,7 +2007,8 @@ With argument, insert value in current buffer after the form." (print-level nil) (print-quoted t) (print-gensym t) - (print-circle t)) ; handle circular data structures + (print-circle ; handle circular data structures + (not byte-compile-disable-print-circle))) (princ "\n" outbuffer) (prin1 form outbuffer) nil))) @@ -2060,7 +2065,8 @@ list that represents a doc string reference. ;; print-gensym-alist not to be cleared ;; between calls to print functions. (print-gensym '(t)) - (print-circle t) ; handle circular data structures + (print-circle ; handle circular data structures + (not byte-compile-disable-print-circle)) print-gensym-alist ; was used before print-circle existed. (print-continuous-numbering t) print-number-table From 445de73cf6f9faf042b52bc48dcf5041ee261dfb Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 02:31:22 +0000 Subject: [PATCH 076/131] (comint-insert-input): Handle situation where the selected buffer is not the clicked buffer. --- lisp/comint.el | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/lisp/comint.el b/lisp/comint.el index cd5a9a9c13a..26b0add8b76 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -803,17 +803,27 @@ buffer. The hook `comint-exec-hook' is run after each exec." proc)) (defun comint-insert-input (event) - "In a Comint buffer, set the current input to the previous input at point." + "In a Comint buffer, set the current input to the previous input at point. +If there is no previous input at point, run the command specified +by the global keymap (usually `mouse-yank-at-point')." (interactive "e") - (mouse-set-point event) - (let ((pos (point))) - (if (not (eq (field-at-pos pos) 'input)) - ;; No input at POS, fall back to the global definition. + (let ((pos (posn-point (event-end event))) + field input) + (with-selected-window (posn-window (event-end event)) + (and (setq field (field-at-pos pos)) + (setq input (field-string-no-properties pos)))) + (if (or (null comint-accum-marker) + (not (eq field 'input))) + ;; Fall back to the global definition if (i) the selected + ;; buffer is not a comint buffer (which can happen if a + ;; non-comint window was selected and we clicked in a comint + ;; window), or (ii) there is no input at POS. (let* ((keys (this-command-keys)) (last-key (and (vectorp keys) (aref keys (1- (length keys))))) (fun (and last-key (lookup-key global-map (vector last-key))))) - (and fun (call-interactively fun))) - ;; There's previous input at POS, insert it at the end of the buffer. + (and fun (not (eq fun 'comint-insert-input)) + (call-interactively fun))) + ;; Otherwise, insert the previous input. (goto-char (point-max)) ;; First delete any old unsent input at the end (delete-region @@ -821,8 +831,7 @@ buffer. The hook `comint-exec-hook' is run after each exec." (process-mark (get-buffer-process (current-buffer)))) (point)) ;; Insert the input at point - (insert (field-string-no-properties pos))))) - + (insert input)))) ;; Input history processing in a buffer ;; =========================================================================== From 645200b521c87a7af603309e80a99ccca02d72fa Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 02:31:28 +0000 Subject: [PATCH 077/131] * comint.el (comint-insert-input): Handle situation where the selected buffer is not the clicked buffer. --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 663be6b8607..b7d48253fb2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-01-29 Chong Yidong + + * comint.el (comint-insert-input): Handle situation where the + selected buffer is not the clicked buffer. + 2007-01-29 Kenichi Handa * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): New From 44dc01e42bc41b37105176e24f3cdfd69c8f1e69 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 02:51:28 +0000 Subject: [PATCH 078/131] * jka-compr.el (jka-compr-partial-uncompress) (jka-compr-call-process): Rebind default-directory if it is invalid. Suggested by Chris Moore. --- lisp/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b7d48253fb2..01740baa320 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2007-01-29 Chong Yidong + * jka-compr.el (jka-compr-partial-uncompress) + (jka-compr-call-process): Rebind default-directory if it is + invalid. Suggested by Chris Moore. + * comint.el (comint-insert-input): Handle situation where the selected buffer is not the clicked buffer. From dc2cef7741e95d8bad400d666b89a7bf5f5fa16e Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 02:51:41 +0000 Subject: [PATCH 079/131] (jka-compr-partial-uncompress, jka-compr-call-process): Rebind default-directory if it is invalid. Suggested by Chris Moore. --- lisp/jka-compr.el | 80 ++++++++++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 39 deletions(-) diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index 8c107cc3271..32df6ce53f9 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -155,6 +155,12 @@ to keep: LEN chars starting BEG chars from the beginning." ;; to discard the part we don't want. (let ((skip (/ beg jka-compr-dd-blocksize)) (err-file (jka-compr-make-temp-name)) + ;; call-process barfs if default-directory is inaccessible. + (default-directory + (if (and default-directory + (file-accessible-directory-p default-directory)) + default-directory + (file-name-directory infile))) count) ;; Update PREFIX based on the text that we won't read in. (setq prefix (- beg (* skip jka-compr-dd-blocksize)) @@ -193,45 +199,41 @@ to keep: LEN chars starting BEG chars from the beginning." (defun jka-compr-call-process (prog message infile output temp args) - (if jka-compr-use-shell - - (let ((err-file (jka-compr-make-temp-name)) - (coding-system-for-read (or coding-system-for-read 'undecided)) - (coding-system-for-write 'no-conversion)) - - (unwind-protect - - (or (memq - (call-process jka-compr-shell infile - (if (stringp output) nil output) - nil - "-c" - (format "%s %s 2> %s %s" - prog - (mapconcat 'identity args " ") - err-file - (if (stringp output) - (concat "> " output) - ""))) - jka-compr-acceptable-retval-list) - - (jka-compr-error prog args infile message err-file)) - - (jka-compr-delete-temp-file err-file))) - - (or (eq 0 - (apply 'call-process - prog - infile - (if (stringp output) temp output) - nil - args)) - (jka-compr-error prog args infile message)) - - (and (stringp output) - (with-current-buffer temp - (write-region (point-min) (point-max) output) - (erase-buffer))))) + ;; call-process barfs if default-directory is inaccessible. + (let ((default-directory + (if (and default-directory + (file-accessible-directory-p default-directory)) + default-directory + (file-name-directory infile)))) + (if jka-compr-use-shell + (let ((err-file (jka-compr-make-temp-name)) + (coding-system-for-read (or coding-system-for-read 'undecided)) + (coding-system-for-write 'no-conversion)) + (unwind-protect + (or (memq + (call-process jka-compr-shell infile + (if (stringp output) nil output) + nil + "-c" + (format "%s %s 2> %s %s" + prog + (mapconcat 'identity args " ") + err-file + (if (stringp output) + (concat "> " output) + ""))) + jka-compr-acceptable-retval-list) + (jka-compr-error prog args infile message err-file)) + (jka-compr-delete-temp-file err-file))) + (or (eq 0 + (apply 'call-process + prog infile (if (stringp output) temp output) + nil args)) + (jka-compr-error prog args infile message)) + (and (stringp output) + (with-current-buffer temp + (write-region (point-min) (point-max) output) + (erase-buffer)))))) ;; Support for temp files. Much of this was inspired if not lifted From 61a0c99149dc605b334d0c367cb6166425fd1288 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 02:52:01 +0000 Subject: [PATCH 080/131] ** jka-compr fails when default-directory is nonexistent. Fixed. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index a03ea3c83db..6b57d63e357 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -78,8 +78,6 @@ through the custom mechanism. ** ZTHJWSQQAFHV@spammotel.com, Jan 12: Color-theme problems in Emacs 22+ (Ubuntu, Windows) -** jka-compr fails when default-directory is nonexistent. - ** Binding print-circle to nil in compilation for certain files. * DOCUMENTATION From 7d15a839d9b4f922aef7753c6dbac2777399443b Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 29 Jan 2007 03:58:40 +0000 Subject: [PATCH 081/131] (tit-process-header): Add byte-compile-disable-print-circle:t at the head. (miscdic-convert): Likewise. (py-converter): Skip the header comments. --- lisp/international/titdic-cnv.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el index 9577ccf50ad..adf5e080b04 100644 --- a/lisp/international/titdic-cnv.el +++ b/lisp/international/titdic-cnv.el @@ -271,7 +271,9 @@ SPC, 6, 3, 4, or 7 specifing a tone (SPC:$(0?v(N(B, 6:$(0Dm(N(B, 3:$(0&9Vy (tit-keyprompt nil)) (princ ";; Quail package `") - (princ package) (princ "' -*- coding:iso-2022-7bit; -*-\n") + (princ package) + (princ "' -*- coding:iso-2022-7bit; ") + (princ "byte-compile-disable-print-circle:t; -*-\n") (princ ";; Generated by the command `titdic-convert'\n;;\tDate: ") (princ (current-time-string)) (princ "\n;;\tOriginal TIT dictionary file: ") @@ -908,6 +910,9 @@ method `chinese-tonepy' with which you must specify tones by digits (let ((pos (point))) (insert-buffer-substring dicbuf) (goto-char pos) + (search-forward "^[a-z]") + (beginning-of-line) + (delete-region pos (point)) (while (not (eobp)) (insert "(\"") (skip-chars-forward "a-z") @@ -1141,7 +1146,8 @@ the generated Quail package is saved." (message "Converting %s to %s..." dicfile quailfile) (with-temp-file (expand-file-name quailfile dirname) (set-buffer-file-coding-system 'iso-2022-7bit) - (insert ";; Quail package `" name "' -*- coding:iso-2022-7bit; -*-\n") + (insert ";; Quail package `" name "' -*- coding:iso-2022-7bit; ") + (insert "byte-compile-disable-print-circle:t; -*-\n"); (insert ";; Generated by the command `miscdic-convert'\n") (insert ";; Date: " (current-time-string) "\n") (insert ";; Source dictionary file: " dicfile "\n") From f6c02c7addd47f030fd85c126e2d1af92cf2db80 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 29 Jan 2007 03:59:59 +0000 Subject: [PATCH 082/131] (skkdic-convert): Add byte-compile-disable-print-circle:t at the head. --- lisp/ChangeLog | 8 ++++++++ lisp/international/ja-dic-cnv.el | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 01740baa320..d1831cece40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -9,6 +9,14 @@ 2007-01-29 Kenichi Handa + * international/ja-dic-cnv.el (skkdic-convert): Add + byte-compile-disable-print-circle:t at the head. + + * international/titdic-cnv.el (tit-process-header): Add + byte-compile-disable-print-circle:t at the head. + (miscdic-convert): Likewise. + (py-converter): Skip the header comments. + * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): New variable. (byte-compile-output-file-form): Bing print-circle to nil if diff --git a/lisp/international/ja-dic-cnv.el b/lisp/international/ja-dic-cnv.el index babfc5bacf7..c4475d84c10 100644 --- a/lisp/international/ja-dic-cnv.el +++ b/lisp/international/ja-dic-cnv.el @@ -361,7 +361,7 @@ The name of generated file is specified by the variable `ja-dic-filename'." (erase-buffer) (buffer-disable-undo) (insert ";;; ja-dic.el --- dictionary for Japanese input method" - " -*-coding: iso-2022-jp;-*-\n" + " -*-coding: iso-2022-jp; byte-compile-disable-print-circle:t; -*-\n" ";;\tGenerated by the command `skkdic-convert'\n" ";;\tDate: " (current-time-string) "\n" ";;\tOriginal SKK dictionary file: " From 1fbfb0b51325bf161dda3b2db4b462784a61850d Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 29 Jan 2007 07:29:54 +0000 Subject: [PATCH 083/131] *** empty log message *** --- admin/notes/copyright | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/admin/notes/copyright b/admin/notes/copyright index 0c2340fc54f..c5fa152d71a 100644 --- a/admin/notes/copyright +++ b/admin/notes/copyright @@ -97,6 +97,13 @@ lib-src/etags.c lib-src/getopt1.c, getopt_int.h - these are from the GNU C library. Leave the copyrights alone. +lisp/play/tetris.el + - no special rules about the copyright. We note here that we believe + (2007/1) there is no problem with our use of the name "tetris" or + the concept. + rms: "My understanding is that game rules as such are not copyrightable." + + lispref/doclicense.texi man/doclicense.texi - leave the copyright alone in this imported file. From 4abaeb50c1072fe8b43df374081fa08cb2312621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Mon, 29 Jan 2007 07:59:22 +0000 Subject: [PATCH 084/131] *** empty log message *** --- src/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index dd133046747..0a48eaba146 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Jan Dj,Ad(Brv + + * Makefile.in: Use a variable, XFT_LIBS, instead #define LIB_X11_LIB. + 2007-01-28 Richard Stallman * minibuf.c (Ftry_completion, Fall_completions) From 106bfcaeab770b989ada669e6534548242238791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Mon, 29 Jan 2007 07:59:50 +0000 Subject: [PATCH 085/131] Use a variable, XFT_LIBS, instead #define LIB_X11_LIB. --- src/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 8dd211c0fa2..cd2c15a636d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -403,8 +403,8 @@ LIBXT=$(LIBW) #endif /* not USE_X_TOOLKIT */ #if HAVE_XFT -#undef LIB_X11_LIB -#define LIB_X11_LIB @XFT_LIBS@ +#undef LIB_X11_LIB /* XFT_LIBS includes -lX11 */ +XFT_LIBS=@XFT_LIBS@" #endif /* HAVE_XFT */ #if HAVE_XPM @@ -451,7 +451,7 @@ LIBXT=$(LIBW) /* LD_SWITCH_X_DEFAULT comes after everything else that specifies options for where to find X libraries, but before those libraries. */ X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT -LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM +LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM $(XFT_LIBS) #else /* not HAVE_X11 */ LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM #endif /* not HAVE_X11 */ From 8d097e4711facdeecd7ce8a3479aaeb04ee85ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Mon, 29 Jan 2007 08:03:24 +0000 Subject: [PATCH 086/131] Fix bad quoute in previous checkin. --- src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index cd2c15a636d..4e2913eafb6 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -404,7 +404,7 @@ LIBXT=$(LIBW) #if HAVE_XFT #undef LIB_X11_LIB /* XFT_LIBS includes -lX11 */ -XFT_LIBS=@XFT_LIBS@" +XFT_LIBS=@XFT_LIBS@ #endif /* HAVE_XFT */ #if HAVE_XPM From 19e32937ec28d1c7ab5cc543e16a74ceb4cbcb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Mon, 29 Jan 2007 08:05:52 +0000 Subject: [PATCH 087/131] Must define LIB_X!!_LIBS to empty --- src/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.in b/src/Makefile.in index 4e2913eafb6..9407eb6c0bc 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -404,6 +404,7 @@ LIBXT=$(LIBW) #if HAVE_XFT #undef LIB_X11_LIB /* XFT_LIBS includes -lX11 */ +#define LIB_X11_LIB XFT_LIBS=@XFT_LIBS@ #endif /* HAVE_XFT */ From 8c8d1081b67f9f9c90c0b64832ac0f5bcce26530 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 29 Jan 2007 11:08:19 +0000 Subject: [PATCH 088/131] (py-converter): Fix previous change. --- lisp/ChangeLog | 4 ++++ lisp/international/titdic-cnv.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d1831cece40..8960b0422be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Kenichi Handa + + * international/titdic-cnv.el (py-converter): Fix previous change. + 2007-01-29 Chong Yidong * jka-compr.el (jka-compr-partial-uncompress) diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el index adf5e080b04..c8a1155b0f3 100644 --- a/lisp/international/titdic-cnv.el +++ b/lisp/international/titdic-cnv.el @@ -910,7 +910,7 @@ method `chinese-tonepy' with which you must specify tones by digits (let ((pos (point))) (insert-buffer-substring dicbuf) (goto-char pos) - (search-forward "^[a-z]") + (re-search-forward "^[a-z]") (beginning-of-line) (delete-region pos (point)) (while (not (eobp)) From ae26ec069be9548553e06d32cd5ad5ab92ed0d6c Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 11:12:02 +0000 Subject: [PATCH 089/131] Regenerate (with byte-compile-disable-print-circle bound to t). --- leim/ja-dic/ja-dic.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/leim/ja-dic/ja-dic.el b/leim/ja-dic/ja-dic.el index 1866131c28b..80ca3a39243 100644 --- a/leim/ja-dic/ja-dic.el +++ b/leim/ja-dic/ja-dic.el @@ -1,6 +1,6 @@ -;;; ja-dic.el --- dictionary for Japanese input method -*-coding: iso-2022-jp;-*- +;;; ja-dic.el --- dictionary for Japanese input method -*-coding: iso-2022-jp; byte-compile-disable-print-circle:t; -*- ;; Generated by the command `skkdic-convert' -;; Date: Wed Jan 24 15:18:03 2007 +;; Date: Mon Jan 29 12:08:57 2007 ;; Original SKK dictionary file: ../SKK-DIC/SKK-JISYO.L ;; This file is part of GNU Emacs. @@ -54583,5 +54583,4 @@ ;; (provide 'ja-dic) -;; arch-tag: 18f1f3f5-d706-4c5d-bdac-a6a762de287d ;;; ja-dic.el ends here From 7a92c8fd4744ceea25a44894dbcd07949cc236b7 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 11:17:20 +0000 Subject: [PATCH 090/131] Restore arch tagline. --- leim/ja-dic/ja-dic.el | 1 + 1 file changed, 1 insertion(+) diff --git a/leim/ja-dic/ja-dic.el b/leim/ja-dic/ja-dic.el index 80ca3a39243..695ea79c4a7 100644 --- a/leim/ja-dic/ja-dic.el +++ b/leim/ja-dic/ja-dic.el @@ -54583,4 +54583,5 @@ ;; (provide 'ja-dic) +;; arch-tag: 18f1f3f5-d706-4c5d-bdac-a6a762de287d ;;; ja-dic.el ends here From f5bb919695e139e5068d754a80a17f6522d49d2b Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 11:55:30 +0000 Subject: [PATCH 091/131] (list-load-path-shadows): Doc fix. --- lisp/ChangeLog | 16 ++++++++++------ lisp/emacs-lisp/shadow.el | 6 +++--- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8960b0422be..7d96ceaadf4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Juanma Barranquero + + * emacs-lisp/shadow.el (list-load-path-shadows): Doc fix. + 2007-01-29 Kenichi Handa * international/titdic-cnv.el (py-converter): Fix previous change. @@ -13,16 +17,16 @@ 2007-01-29 Kenichi Handa - * international/ja-dic-cnv.el (skkdic-convert): Add - byte-compile-disable-print-circle:t at the head. + * international/ja-dic-cnv.el (skkdic-convert): + Add byte-compile-disable-print-circle:t at the head. - * international/titdic-cnv.el (tit-process-header): Add - byte-compile-disable-print-circle:t at the head. + * international/titdic-cnv.el (tit-process-header): + Add byte-compile-disable-print-circle:t at the head. (miscdic-convert): Likewise. (py-converter): Skip the header comments. - * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): New - variable. + * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): + New variable. (byte-compile-output-file-form): Bing print-circle to nil if byte-compile-output-file-form is not nil. (byte-compile-output-docform): Likewise. diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el index 827ee9c4e6b..03c3c94b54a 100644 --- a/lisp/emacs-lisp/shadow.el +++ b/lisp/emacs-lisp/shadow.el @@ -93,7 +93,7 @@ See the documentation for `list-load-path-shadows' for further information." (setq dir (directory-file-name (file-truename (or (car path) ".")))) (if (member dir true-names) ;; We have already considered this PATH redundant directory. - ;; Show the redundancy if we are interactiver, unless the PATH + ;; Show the redundancy if we are interactive, unless the PATH ;; dir is nil or "." (these redundant directories are just a ;; result of the current working directory, and are therefore ;; not always redundant). @@ -170,8 +170,8 @@ See the documentation for `list-load-path-shadows' for further information." (defun list-load-path-shadows () "Display a list of Emacs Lisp files that shadow other files. -This function lists potential load-path problems. Directories in the -`load-path' variable are searched, in order, for Emacs Lisp +This function lists potential load path problems. Directories in +the `load-path' variable are searched, in order, for Emacs Lisp files. When a previously encountered file name is found again, a message is displayed indicating that the later file is \"hidden\" by the earlier. From 228b1afdf7e1d9a11f2d69db9a3503b71243f85c Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:10:37 +0000 Subject: [PATCH 092/131] (isearchb-iswitchb): Fix typo in docstring. --- lisp/isearchb.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/isearchb.el b/lisp/isearchb.el index 0f46969a2d2..72a06fa687b 100644 --- a/lisp/isearchb.el +++ b/lisp/isearchb.el @@ -115,7 +115,7 @@ If nil, don't use a timeout." (defun isearchb-iswitchb () "isearchb's custom version of the `iswitchb' command. -It's purpose is to pass different call arguments to +Its purpose is to pass different call arguments to `iswitchb-read-buffer'." (interactive) (let* ((prompt "iswitch ") From 1b1200a12034f650d8d9ea71eb5dc58a405e6455 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:11:48 +0000 Subject: [PATCH 093/131] (ps-build-face-reference): Fix typo in docstring. --- lisp/ps-print.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ps-print.el b/lisp/ps-print.el index ca8cada2b2e..514c55e7dd6 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -3313,7 +3313,7 @@ require slightly different versions of this line." "*Non-nil means build the reference face lists. ps-print sets this value to nil after it builds its internal reference lists of -bold and italic faces. By settings its value back to t, you can force ps-print +bold and italic faces. By setting its value back to t, you can force ps-print to rebuild the lists the next time you invoke one of the ...-with-faces commands. From 31096fe898f8cb2194d771fdd4c96ca7a02e8d52 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:13:22 +0000 Subject: [PATCH 094/131] (eshell-rewrite-for-command): Fix typo in docstring. --- lisp/eshell/esh-cmd.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index cc818650579..2b48bad0166 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el @@ -497,7 +497,7 @@ the second is ignored." (defun eshell-rewrite-for-command (terms) "Rewrite a `for' command into its equivalent Eshell command form. Because the implementation of `for' relies upon conditional evaluation -of its argumbent (i.e., use of a Lisp special form), it must be +of its argument (i.e., use of a Lisp special form), it must be implemented via rewriting, rather than as a function." (if (and (stringp (car terms)) (string= (car terms) "for") From 382f8b5c8f9df8c11181dcbcfa57621dfe38829e Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:14:13 +0000 Subject: [PATCH 095/131] (find-auto-coding): Fix typo in docstring. --- lisp/international/mule.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 25b53027f95..6d1a17cba42 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -1676,7 +1676,7 @@ cons (CODING . SOURCE), where CODING is the specified coding system and SOURCE is a symbol `auto-coding-alist', `auto-coding-regexp-alist', `coding:', or `auto-coding-functions' indicating by what CODING is specified. Note that the validity -of CODING is not checked; it's callers responsibility to check it. +of CODING is not checked; it's the caller's responsibility to check it. If nothing is specified, the return value is nil." (or (let ((coding-system (auto-coding-alist-lookup filename))) From d7df8561119952a0e14fd17d8e514e9a4b85f869 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:15:08 +0000 Subject: [PATCH 096/131] (sc-attrib-selection-list): Fix typo in docstring. --- lisp/mail/supercite.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index 8d20ea7d2b2..a752f4d2980 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el @@ -422,8 +422,8 @@ Each element of this list has the following form: (...))) Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular -expression to match against the INFOKEY's value. ATTRIBUTION can be a -string or a list. If its a string, then it is the attribution that is +expression to match against the INFOKEY's value. ATTRIBUTION can be a +string or a list. If it's a string, then it is the attribution that is selected by `sc-select-attribution'. If it is a list, it is `eval'd and the return value must be a string, which is used as the selected attribution. Note that the variable `sc-preferred-attribution-list' From c006623074918b4068bda65e3c5bcc076f2d8deb Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:16:22 +0000 Subject: [PATCH 097/131] (c-emacs-features): Fix typo in docstring. --- lisp/progmodes/cc-defs.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index 1858b43f326..43fa0ab5937 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el @@ -740,7 +740,7 @@ be after it." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; V i r t u a l S e m i c o l o n s +;; V i r t u a l S e m i c o l o n s ;; ;; In most CC Mode languages, statements are terminated explicitly by ;; semicolons or closing braces. In some of the CC modes (currently only AWK @@ -784,7 +784,7 @@ be after it." ;; ;; The macro `c-vsemi-status-unknown-p' will typically check the cacheing ;; scheme used by the `c-at-vsemi-p-fn', hence the name - the status is -;; "unknown" if there is no cache entry current for the line. +;; "unknown" if there is no cache entry current for the line. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defmacro c-at-vsemi-p (&optional pos) @@ -1514,8 +1514,8 @@ might be present: (i.e. the syntax class `|'). 'pps-extended-state `parse-partial-sexp' returns a list with at least 10 elements, i.e. it contains the position of the start of - the last comment or string. It's always set - CC Mode no - longer works in emacsen without this feature. + the last comment or string. It's always set - CC Mode + no longer works in emacsen without this feature. 'posix-char-classes The regexp engine understands POSIX character classes. 'col-0-paren It's possible to turn off the ad-hoc rule that a paren in column zero is the start of a defun. From 12f5c601bf2cca9acbf39ef5cd00fa481f237500 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:17:05 +0000 Subject: [PATCH 098/131] (c-offsets-alist): Fix typo in docstring. --- lisp/progmodes/cc-vars.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el index 3aac25b43ed..cbf2b44de23 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el @@ -1168,7 +1168,7 @@ OFFSET can specify an offset in several different ways: If OFFSET is a symbol with a value binding then that value, which must be an integer, is used as relative offset. - If OFFSET is a vector then it's first element, which must be an + If OFFSET is a vector then its first element, which must be an integer, is used as an absolute indentation column. This overrides the previous base indentation and the relative offsets applied to it, and it becomes the new base indentation. From 84bb5a0c652ab8108b35ea6e67981924742bd6bf Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:18:04 +0000 Subject: [PATCH 099/131] (flymake-init-create-temp-source-and-master-buffer-copy): Fix typo in docstring. --- lisp/progmodes/flymake.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 80015795cd9..8d126c8a413 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1626,7 +1626,7 @@ Return full-name. Names are real, not patched." buildfile-name source-file-name))))) (defun flymake-init-create-temp-source-and-master-buffer-copy (get-incl-dirs-f create-temp-f master-file-masks include-regexp) - "Find master file (or buffer), create it's copy along with a copy of the source file." + "Find master file (or buffer), create its copy along with a copy of the source file." (let* ((source-file-name buffer-file-name) (temp-source-file-name (flymake-init-create-temp-buffer-copy create-temp-f)) (master-and-temp-master (flymake-create-master-file From a4c6cfad1ce2abe4c4bed2e43d054cdc5bd825b3 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 16:56:46 +0000 Subject: [PATCH 100/131] (vhdl-components-package-name, vhdl-get-library-unit, vhdl-corresponding-begin, vhdl-skip-case-alternative, vhdl-backward-skip-label, vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word, vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func, vhdl-font-lock-match-item): Fix typos in docstrings. (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist, vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents, vhdl-speedbar-insert-project-hierarchy): Improve argument/docstring consistency. --- lisp/progmodes/vhdl-mode.el | 42 ++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index dbd8e2b080d..2d7bbd79c6b 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -1147,7 +1147,7 @@ default setting as example)." (concat "*Specifies how the name for the components package is obtained. The components package is a package containing all component declarations for -the current design. It's name can be obtained by modifying the project name +the current design. Its name can be obtained by modifying the project name \(e.g. attaching or stripping off a substring). If no project is defined, the DIRECTORY entry is chosen." vhdl-name-doc-string) @@ -2434,7 +2434,7 @@ conversion." (insert-file-contents filename t))) (defun vhdl-sort-alist (alist) - "Sort alist." + "Sort ALIST." (sort alist (function (lambda (a b) (string< (car a) (car b)))))) (defun vhdl-get-subdirs (directory) @@ -5239,7 +5239,7 @@ Return a valid value only." (defun vhdl-set-offset (symbol offset &optional add-p) "Change the value of a syntactic element symbol in `vhdl-offsets-alist'. SYMBOL is the syntactic element symbol to change and OFFSET is the new -offset for that syntactic element. Optional ADD says to add SYMBOL to +offset for that syntactic element. Optional ADD-P says to add SYMBOL to `vhdl-offsets-alist' if it doesn't already appear there." (interactive (let* ((langelem @@ -5765,7 +5765,7 @@ keyword." "If the word at the current position corresponds to an \"end\" keyword, then return a vector containing enough information to find the corresponding \"begin\" keyword, else return nil. The keyword to -search backward for is aref 0. The column in which the keyword must +search backward for is aref 0. The column in which the keyword must appear is aref 1 or nil if any column is suitable. The supplementary keyword to search forward for is aref 2 or nil if this is not required. If aref 3 is t, then the \"begin\" keyword may be found in @@ -6424,8 +6424,8 @@ statement if already at the beginning of one." ;; Defuns for calculating the current syntactic state: (defun vhdl-get-library-unit (bod placeholder) - "If there is an enclosing library unit at bod, with it's \"begin\" -keyword at placeholder, then return the library unit type." + "If there is an enclosing library unit at BOD, with its \"begin\" +keyword at PLACEHOLDER, then return the library unit type." (let ((here (vhdl-point 'bol))) (if (save-excursion (goto-char placeholder) @@ -6448,7 +6448,7 @@ keyword at placeholder, then return the library unit type." (defun vhdl-get-block-state (&optional lim) "Finds and records all the closest opens. -lim is the furthest back we need to search (it should be the +LIM is the furthest back we need to search (it should be the previous libunit keyword)." (let ((here (point)) (lim (or lim (point-min))) @@ -6514,8 +6514,8 @@ previous libunit keyword)." (defun vhdl-skip-case-alternative (&optional lim) "Skip forward over case/when bodies, with optional maximal -limit. If no next case alternative is found, nil is returned and point -is not moved." +limit. If no next case alternative is found, nil is returned and +point is not moved." (let ((lim (or lim (point-max))) (here (point)) donep foundp) @@ -6541,7 +6541,7 @@ is not moved." (defun vhdl-backward-skip-label (&optional lim) "Skip backward over a label, with optional maximal -limit. If label is not found, nil is returned and point +limit. If label is not found, nil is returned and point is not moved." (let ((lim (or lim (point-min))) placeholder) @@ -7306,9 +7306,9 @@ indentation is done before aligning." (defun vhdl-align-region-2 (begin end match &optional substr spacing) "Align a range of lines from BEGIN to END. The regular expression -MATCH must match exactly one fields: the whitespace to be +MATCH must match exactly one field: the whitespace to be contracted/expanded. The alignment column will equal the -rightmost column of the widest whitespace block. SPACING is +rightmost column of the widest whitespace block. SPACING is the amount of extra spaces to add to the calculated maximum required. SPACING defaults to 1 so that at least one space is inserted after the token in MATCH." @@ -8101,7 +8101,7 @@ Turn on if ARG positive, turn off if ARG negative, toggle if ARG zero or nil." (defun vhdl-electric-dash (count) "-- starts a comment, --- draws a horizontal line, ----- starts a display comment" +---- starts a display comment." (interactive "p") (if (and vhdl-stutter-mode (not (vhdl-in-literal))) (cond @@ -10448,7 +10448,7 @@ with double-quotes is to be inserted. DEFAULT specifies a default string." (if vhdl-upper-case-keywords (upcase keyword) (downcase keyword))) (defun vhdl-case-word (num) - "Adjust case or following NUM words." + "Adjust case of following NUM words." (if vhdl-upper-case-keywords (upcase-word num) (downcase-word num))) (defun vhdl-minibuffer-tab (&optional prefix-arg) @@ -10586,7 +10586,7 @@ else insert tab (used for word completion in VHDL minibuffer)." (defun vhdl-hooked-abbrev (func) "Do function, if syntax says abbrev is a keyword, invoked by hooked abbrev, -but not if inside a comment or quote)." +but not if inside a comment or quote." (if (or (vhdl-in-literal) (save-excursion (forward-word -1) @@ -12083,8 +12083,8 @@ expressions (e.g. for index ranges of types and signals)." ;; Case fixing (defun vhdl-fix-case-region-1 (beg end upper-case word-regexp &optional count) - "Convert all words matching word-regexp in region to lower or upper case, -depending on parameter upper-case." + "Convert all words matching WORD-REGEXP in region to lower or upper case, +depending on parameter UPPER-CASE." (let ((case-replace nil) (last-update 0)) (vhdl-prepare-search-2 @@ -12463,7 +12463,7 @@ File statistics: \"%s\"\n\ "Regexp to match start of construct to hide.") (defun vhdl-hs-forward-sexp-func (count) - "Find end of construct to hide (for hideshow). Only searches forward." + "Find end of construct to hide (for hideshow). Only searches forward." (let ((pos (point))) (vhdl-prepare-search-2 (beginning-of-line) @@ -12586,7 +12586,7 @@ File statistics: \"%s\"\n\ (goto-char end)))))) (defun vhdl-font-lock-match-item (limit) - "Match, and move over, any declaration item after point. Adapted from + "Match, and move over, any declaration item after point. Adapted from `font-lock-match-c-style-declaration-item-and-skip-to-next'." (condition-case nil (save-restriction @@ -13130,7 +13130,7 @@ hierarchy otherwise.") (defun vhdl-scan-directory-contents (name &optional project update num-string non-final) - "Scan contents of VHDL files in directory or file pattern DIR-NAME." + "Scan contents of VHDL files in directory or file pattern NAME." (string-match "\\(.*[/\\]\\)\\(.*\\)" name) ; (unless (file-directory-p (match-string 1 name)) ; (message "No such directory: \"%s\"" (match-string 1 name))) @@ -14172,7 +14172,7 @@ if required." ) (defun vhdl-speedbar-insert-project-hierarchy (project indent &optional rescan) - "Insert hierarchy of project. Rescan directories if RESCAN is non-nil, + "Insert hierarchy of PROJECT. Rescan directories if RESCAN is non-nil, otherwise use cached data." (when (or rescan (and (not (assoc project vhdl-file-alist)) (not (vhdl-load-cache project)))) From d7c2974dec9b2fa2dfe65a2ace57c9b1cf35cac4 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 17:01:33 +0000 Subject: [PATCH 101/131] (url-get-authentication): Fix typo in docstring. --- lisp/ChangeLog | 22 +++++++++++++++++++++- lisp/url/url-auth.el | 4 ++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d96ceaadf4..56c24779e25 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,26 @@ 2007-01-29 Juanma Barranquero - * emacs-lisp/shadow.el (list-load-path-shadows): Doc fix. + * isearchb.el (isearchb-iswitchb): + * ps-print.el (ps-build-face-reference): + * eshell/esh-cmd.el (eshell-rewrite-for-command): + * international/mule.el (find-auto-coding): + * mail/supercite.el (sc-attrib-selection-list): + * progmodes/cc-defs.el (c-emacs-features): + * progmodes/cc-vars.el (c-offsets-alist): + * progmodes/flymake.el + (flymake-init-create-temp-source-and-master-buffer-copy): + Fix typos in docstrings (some suggested by Chris Moore). + + * progmodes/vhdl-mode.el (vhdl-components-package-name) + (vhdl-get-library-unit, vhdl-corresponding-begin) + (vhdl-skip-case-alternative, vhdl-backward-skip-label) + (vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word) + (vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func) + (vhdl-font-lock-match-item): Fix typos in docstrings. + (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist) + (vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents) + (vhdl-speedbar-insert-project-hierarchy): + Improve argument/docstring consistency. 2007-01-29 Kenichi Handa diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index c0f2c6bdf0f..c786887f1f6 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -94,7 +94,7 @@ instead of the pathname inheritance method." (string-match "/" path)) (while (and byserv (not retval)) (setq data (car (car byserv))) - (if (or (not (string-match "/" data)) ; Its a realm - take it! + (if (or (not (string-match "/" data)) ; It's a realm - take it! (and (>= (length path) (length data)) (string= data (substring path 0 (length data))))) @@ -231,7 +231,7 @@ TYPE is the type of authentication to be returned. This is either a string representing the type (basic, digest, etc), or nil or the symbol 'any' to specify that any authentication is acceptable. If requesting 'any' the strongest matching authentication will be returned. If this is - wrong, its no big deal, the error from the server will specify exactly + wrong, it's no big deal, the error from the server will specify exactly what type of auth to use PROMPT is boolean - specifies whether to ask the user for a username/password if one cannot be found in the cache" From aa819354588d927176f6dcaaea8a57136ecc6eb1 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 17:03:13 +0000 Subject: [PATCH 102/131] (gnus-button-prefer-mid-or-mail): Fix typo in docstring. --- lisp/gnus/gnus-art.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index e757406f00d..c6ac13af6c9 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -6238,7 +6238,7 @@ Strings like this can be either a message ID or a mail address. If it is one of the symbols `mid' or `mail', Gnus will always assume that the string is a message ID or a mail address, respectively. If this variable is set to the symbol `ask', always query the user what do do. If it is a function, this -function will be called with the string as it's only argument. The function +function will be called with the string as its only argument. The function must return `mid', `mail', `invalid' or `ask'." :version "22.1" :group 'gnus-article-buttons From 44a4380296fc46d8629b2cc020f4d96e6b227d94 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 17:03:59 +0000 Subject: [PATCH 103/131] * configure.in: Restore support for hp800's not running HP-UX. * configure: Regenerate. --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 570441ec519..e60ebae898f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-29 Chong Yidong + + * configure.in: Restore support for hp800's not running HP-UX. + + * configure: Regenerate. + 2007-01-27 Chong Yidong * configure.in: Remove support for hp800 and sr2k machine types. From 55433670b6fb35bb792714cabd75835d2f617c68 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 17:04:18 +0000 Subject: [PATCH 104/131] Restore support for hp800's not running HP-UX. --- configure.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.in b/configure.in index ffafa585040..5365649056d 100644 --- a/configure.in +++ b/configure.in @@ -269,6 +269,7 @@ dnl see the `changequote' comment above. vax-*-netbsd*) machine=vax ;; arm-*-netbsd*) machine=arm ;; x86_64-*-netbsd*) machine=amdx86-64 ;; + hppa-*-netbsd*) machine=hp800 ;; shle-*-netbsd*) machine=sh3el ;; esac ;; @@ -606,6 +607,14 @@ dnl see the `changequote' comment above. esac ;; + hppa*-*-linux-gnu* ) + machine=hp800 opsys=gnu-linux + ;; + + hppa*-*-nextstep* ) + machine=hp800 opsys=nextstep + ;; + ## Orion machines orion-orion-bsd* ) machine=orion opsys=bsd4-2 From 13aadc96ed9d938084fe640d457ddbbb6c726491 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 17:04:28 +0000 Subject: [PATCH 105/131] Regenerate. --- configure | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure b/configure index 001cf65d3e8..6572f0dfcef 100755 --- a/configure +++ b/configure @@ -2235,6 +2235,7 @@ _ACEOF vax-*-netbsd*) machine=vax ;; arm-*-netbsd*) machine=arm ;; x86_64-*-netbsd*) machine=amdx86-64 ;; + hppa-*-netbsd*) machine=hp800 ;; shle-*-netbsd*) machine=sh3el ;; esac ;; @@ -2572,6 +2573,14 @@ _ACEOF esac ;; + hppa*-*-linux-gnu* ) + machine=hp800 opsys=gnu-linux + ;; + + hppa*-*-nextstep* ) + machine=hp800 opsys=nextstep + ;; + ## Orion machines orion-orion-bsd* ) machine=orion opsys=bsd4-2 From cf1aff89561eea94ec8b89edba5720881a5f28af Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 17:05:29 +0000 Subject: [PATCH 106/131] Restore, removing HP-UX support. --- src/m/hp800.h | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 src/m/hp800.h diff --git a/src/m/hp800.h b/src/m/hp800.h new file mode 100644 index 00000000000..eed53183569 --- /dev/null +++ b/src/m/hp800.h @@ -0,0 +1,116 @@ +/* machine description file for hp9000 series 800 machines. + Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, + 2006, 2007 Free Software Foundation, Inc. + +This file is part of GNU Emacs. + +GNU Emacs is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Emacs is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Emacs; see the file COPYING. If not, write to +the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. */ + + +/* The following line tells the configuration script what sort of + operating system this machine is likely to run. + USUAL-OPSYS="hpux" */ + +/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word + is the most significant byte. */ + +#define WORDS_BIG_ENDIAN + +/* Define NO_ARG_ARRAY if you cannot take the address of the first of a + * group of arguments and treat it as an array of the arguments. */ + +#define NO_ARG_ARRAY + +/* Define WORD_MACHINE if addresses and such have + * to be corrected before they can be used as byte counts. */ + +#undef WORD_MACHINE + +/* Now define a symbol for the cpu type, if your compiler + does not define it automatically: + Ones defined so far include vax, m68000, ns16000, pyramid, + orion, tahoe, APOLLO and many others */ +#ifndef hp9000s800 +# define hp9000s800 +#endif + +/* Use type int rather than a union, to represent Lisp_Object */ +/* This is desirable for most machines. */ + +#define NO_UNION_TYPE + +/* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend + the bit field into an int. In other words, if bit fields + are always unsigned. + + If you use NO_UNION_TYPE, this flag does not matter. */ + +#define EXPLICIT_SIGN_EXTEND + +/* The standard definitions of these macros would work ok, + but these are faster because the constants are short. */ + + +#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) + +#define XSET(var, type, ptr) \ + ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) + +/* Definitions for GNU/Linux. (HP/UX is unsupported because of the + removal of unexhp9k800.c due to lack of legal papers.) */ + +#ifdef GNU_LINUX +/* Now define a symbol for the cpu type, if your compiler + does not define it automatically: + Ones defined so far include vax, m68000, ns16000, pyramid, + orion, tahoe, APOLLO and many others */ +#ifndef hp9000s800 +# define hp9000s800 +#endif + +/* Define CANNOT_DUMP on machines where unexec does not work. + Then the function dump-emacs will not be defined + and temacs will do (load "loadup") automatically unless told otherwise. */ + +#undef CANNOT_DUMP + +/* Define NO_REMAP if memory segmentation makes it not work well + to change the boundary between the text section and data section + when Emacs is dumped. If you define this, the preloaded Lisp + code will not be sharable; but that's better than failing completely. */ + +#define NO_REMAP + +/* Data type of load average, as read out of kmem. */ + +#define LOAD_AVE_TYPE long + +/* Convert that into an integer that is 100 for a load average of 1.0 */ + +#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) + +#endif /* GNU_LINUX */ + +/* Systems with GCC don't need to lose. */ +#ifdef __NetBSD__ +# ifdef __GNUC__ +# define alloca __builtin_alloca +# define HAVE_ALLOCA +# endif /* __GNUC__ */ +#endif /* __NetBSD__ */ + +/* arch-tag: 809436e6-1645-4b92-b40d-2de5d6e7227c + (do not change this comment) */ From 956d192800ffb1d1ffd16701b3b06050e98f170c Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 17:06:15 +0000 Subject: [PATCH 107/131] * m/hp800.h: Restore, removing HP-UX support. --- src/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 0a48eaba146..27730b62036 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Chong Yidong + + * m/hp800.h: Restore, removing HP-UX support. + 2007-01-29 Jan Dj,Ad(Brv * Makefile.in: Use a variable, XFT_LIBS, instead #define LIB_X11_LIB. From 8f77631e60ee1f84418427ded4f9a2fca90fe32d Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 29 Jan 2007 17:12:38 +0000 Subject: [PATCH 108/131] *** empty log message *** --- lisp/ChangeLog | 1 + lisp/gnus/ChangeLog | 4 ++++ lisp/url/ChangeLog | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56c24779e25..1f559804fed 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,7 @@ * isearchb.el (isearchb-iswitchb): * ps-print.el (ps-build-face-reference): + * emacs-lisp/shadow.el (list-load-path-shadows): * eshell/esh-cmd.el (eshell-rewrite-for-command): * international/mule.el (find-auto-coding): * mail/supercite.el (sc-attrib-selection-list): diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 7197ca2705f..cc10736aa5d 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Juanma Barranquero + + * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring. + 2007-01-23 Reiner Steib * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 87c27a8786c..0125d4b0bfa 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Juanma Barranquero + + * url-auth.el (url-get-authentication): Fix typo in docstring. + 2007-01-14 Magnus Henoch * url-proxy.el (url-proxy-object): Remove. From d5168ab9fcf0a1f5641963312515789b9ecd2712 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 18:31:07 +0000 Subject: [PATCH 109/131] * frames.texi (Secondary Selection): Window clicked does not matter when mouse-yank-at-point is non-nil. --- man/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/man/ChangeLog b/man/ChangeLog index 44a02efe937..87dd059ecd0 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2007-01-29 Chong Yidong + + * frames.texi (Secondary Selection): Window clicked does not matter + when mouse-yank-at-point is non-nil. + 2007-01-27 Eli Zaretskii * msdog.texi (ls in Lisp): Document ls-lisp-format-time-list and From cb224555e0ab88356d967c8b801ba3d4008df332 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 18:31:24 +0000 Subject: [PATCH 110/131] (Secondary Selection): Window clicked does not matter when mouse-yank-at-point is non-nil. --- man/frames.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/frames.texi b/man/frames.texi index d315a61aedb..965ccb0a7b0 100644 --- a/man/frames.texi +++ b/man/frames.texi @@ -307,9 +307,9 @@ yanked text. Double or triple clicking of @kbd{M-Mouse-1} operates on words and lines, much like @kbd{Mouse-1}. -If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} -yanks at point. Then it does not matter precisely where you click; all -that matters is which window you click on. @xref{Mouse Commands}. +If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} yanks +at point. Then it does not matter precisely where you click, or even +which of the frame's windows you click on. @xref{Mouse Commands}. @node Clipboard @subsection Using the Clipboard From 68bf8b9d5c5c0fc9de4d70e4778a76915fe68a9b Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 29 Jan 2007 18:34:04 +0000 Subject: [PATCH 111/131] ** Binding print-circle to nil in compilation for certain files. Fixed by Kenichi Handa's 2007-01-29 checkin. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 6b57d63e357..590d7ebf024 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -78,8 +78,6 @@ through the custom mechanism. ** ZTHJWSQQAFHV@spammotel.com, Jan 12: Color-theme problems in Emacs 22+ (Ubuntu, Windows) -** Binding print-circle to nil in compilation for certain files. - * DOCUMENTATION ** Check the Emacs Tutorial. From cb5918d9f05c20a2d143447e19c0482a4e30dd00 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 29 Jan 2007 20:53:30 +0000 Subject: [PATCH 112/131] (Future Local Variables): Add index entry. --- lispref/ChangeLog | 4 ++++ lispref/variables.texi | 1 + 2 files changed, 5 insertions(+) diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 2d73fe08a96..41ae844efdd 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,7 @@ +2007-01-29 Eli Zaretskii + + * variables.texi (Future Local Variables): Add index entry. + 2007-01-28 Richard Stallman * tips.texi (Coding Conventions): Clarify the tip about macros diff --git a/lispref/variables.texi b/lispref/variables.texi index 7a2b2013b23..8d3e0bb5c25 100644 --- a/lispref/variables.texi +++ b/lispref/variables.texi @@ -1644,6 +1644,7 @@ local bindings, we will provide it in a subsequent Emacs version. @node File Local Variables @section File Local Variables +@cindex file local variables A file can specify local variable values; Emacs uses these to create buffer-local bindings for those variables in the buffer visiting that From ed4af17b77a8e26fe90fc111378af277974e7ad8 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 29 Jan 2007 21:12:42 +0000 Subject: [PATCH 113/131] (Top): Add "Standard Errors", "Standard Buffer-Local Variables", and "Standard Keymaps" to the detailed menu. --- lispref/ChangeLog | 3 +++ lispref/elisp.texi | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 41ae844efdd..de524bc6500 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,5 +1,8 @@ 2007-01-29 Eli Zaretskii + * elisp.texi (Top): Add "Standard Errors", "Standard Buffer-Local + Variables", and "Standard Keymaps" to the detailed menu. + * variables.texi (Future Local Variables): Add index entry. 2007-01-28 Richard Stallman diff --git a/lispref/elisp.texi b/lispref/elisp.texi index b3486fb5c8d..9bbe806033c 100644 --- a/lispref/elisp.texi +++ b/lispref/elisp.texi @@ -365,6 +365,7 @@ Errors * Processing of Errors:: What Emacs does when you report an error. * Handling Errors:: How you can trap errors and continue execution. * Error Symbols:: How errors are classified for trapping them. +* Standard Errors:: List of all error symbols. Variables @@ -386,6 +387,8 @@ Variables * Variable Aliases:: Variables that are aliases for other variables. * Variables with Restricted Values:: Non-constant variables whose value can @emph{not} be an arbitrary Lisp object. +* Standard Buffer-Local Variables:: + List of variables buffer-local in all buffers. Scoping Rules for Variable Bindings @@ -617,8 +620,9 @@ Keymaps * Remapping Commands:: A keymap can translate one command to another. * Key Binding Commands:: Interactive interfaces for redefining keys. * Scanning Keymaps:: Looking through all keymaps, for printing help. -* Menu Keymaps:: A keymap can define a menu for X - or for use from the terminal. +* Menu Keymaps:: A keymap can define a menu for X + or for use from the terminal. +* Standard Keymaps:: List of standard keymaps. Major and Minor Modes From 5099b26ab85a56295d12be33d71b03ec04e9ca80 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 30 Jan 2007 00:56:06 +0000 Subject: [PATCH 114/131] Add copyright and license notices. --- leim/CXTERM-DIC/CCDOSPY.tit | Bin 16746 -> 17702 bytes leim/CXTERM-DIC/PY-b5.tit | Bin 44214 -> 45170 bytes leim/CXTERM-DIC/SW.tit | Bin 17504 -> 18460 bytes leim/CXTERM-DIC/TONEPY.tit | Bin 29282 -> 30238 bytes leim/MISC-DIC/pinyin.map | Bin 18706 -> 19870 bytes leim/MISC-DIC/ziranma.cin | Bin 432593 -> 433757 bytes 6 files changed, 0 insertions(+), 0 deletions(-) diff --git a/leim/CXTERM-DIC/CCDOSPY.tit b/leim/CXTERM-DIC/CCDOSPY.tit index 3f64c408cbb3e33e1903d772e0f3f6a75003bb01..4055ed4e5d02042feb4b20c64877c3cde785241d 100644 GIT binary patch delta 973 zcmZuw&1%~~5GL0=#SkCbf@@=F139{mv2(B+j0;I`>)nwxt+Xq4M|N})^w)v$_);T4}s6db}d0W(4 zLmoIsa1_yUhz;1_Inrim3qsFnXkQp(2_e%ufpL`dyk-hs|9u*bR<{Fyae`Kn4h)>I z$iM|mZ@7arLS#eLMB3&oFvdG5$f8dOKCt{s{Z2_1iX!aEZy~W^ELFrwWfF}_dn?3( zai$v#2CB0ap~Ka5e7~3q*AAmJ@}M){sf5YXdb(P`+sQi^-Q9hFPtWlDc{!VX882t> zbuMqI?i_vmuXglGEsU4l8R$+F!O=b>iE5c`5r z#jqm{nRCMj7D1DwFG+M#s*B!36kw_fO;i~kOi@6pZLUqEDQR>^M9I#Scw7!>O)dN~ z_0lvNDr|IN#J|)BK=0&CilYiE1EYRjZPh78+DTa^2M3|0WFN^C0&sGbDzuc5l{ONP zeI#b|a8cjN8m?spFEYOCatTDlDq=c~GJ)CXm~?+qO>8z)5H|-K|3+~fxd0r8E(8y( ulRuC4#>kSTn@;3JLGeYYlG>!Ql1t=3V%3D2!zxZ?d~$E{*Kg|YZ{xr9oJ_p{ delta 11 ScmZ41#rUd;aq}MLEJpwz3k19X diff --git a/leim/CXTERM-DIC/PY-b5.tit b/leim/CXTERM-DIC/PY-b5.tit index 22039a06d04ecbecfdbbd0116b781b52490badd5..f1db82de3f89f1cefd823d463c9d67d30e70376d 100644 GIT binary patch delta 973 zcmZuw&1%~~5QZG{6hnMy3$Bf!4dm!L#?HZRFexOxt#?P(P-$1}j_l~97wVy>yi0F+ zhCV@O!B?OJ*T04W{f3-OzQ;3QPT68DR}+&aWq<84*_{yu5|Qc=>TMzk_?hX|-FPd(lBDsZtJ5C+v6D`%nf)S<~;# zpXP|-LlQ|Lvbds$&&oYSNQq#B~FkXgo`n?T$DPHA9Bj z7mO-~EosP{8{V@Bnk0QrqLWgc_3onpQ&ni9%J5){0#a>rZ6ZxcqdOoMx diff --git a/leim/CXTERM-DIC/SW.tit b/leim/CXTERM-DIC/SW.tit index a0a5a442323d53842aa8c49be1f91a8653589d07..5a56ac8c5939e39ccb3022a4acb771254ed1bc96 100644 GIT binary patch delta 973 zcmZuw&1%~~5GL0=#SkCbf@@=F139|3v2(B+ObSU)UGI*pq0+9{9of-I*B<)-eTY6% zAEh($Unv108Sl*ZGvDl=A6LJAUbQ_~pm7+%IEN0h5Mfpto34A;J$TG1K}H3Fe97CQ z)*AA_IfA2zmP2g72G5Z;Lt7AfPDA^`7)uD5)(MQGq~|qL@cQr5Xtcf^0E`o~igaM$ zghd7}V0yzHq!A(;swUDlXMr)^K|vOMLhym*SL%04vQQLZPksxD4P&VyPAZdVRN7l1 z7K}69U@%aftq2{iXXEK|CR{s=(#V6(e5Vp7Pmi(%_B-o+D1)P{>38PO zb42kWiKLM6-bBy#y3#au?jLZ>B%wTrh#oVo+Zn6Pn?IEAw%p7 zMis-3G-S>VA6NuUlD;I-NvSS+4^e=rDl}1LcrZl)skXT`k*1{49T6ovQ{r(spf$Dd z%hXHLXsEE!g%ST!9{|0RGbxTLtPG6$b+uKe7-=VEnH(I1mXduWQwYGxRjSZZMpoKL zK=zTC(ZfZ3D{J^DD|nIdU6)HBB32R8X_N`fM#rT4lWJnKp@O(M*!VY!Ckl!$N|n?mm6co~2NJ6$)EriECgYQPlfQmbe}9|)1=k}?t^fc4 delta 11 ScmbO;f$>2H)nwxRN580BRe|jP5KOdrqW{` zqBHVeDFGoF@67iz-|X){S3h5`+8)f&IE-MNLkC%iFfENu*S+f=taD0`QGp;|^0uh8 zhCFbN;3%Ty5F4<;bEM7C7KEPD(7rIn5<;eR0^=y@dCe5O{`)ifD9T+%a zk%0@C-f;(Mgvf@fiL}jGV2pQAkVT&md|>&N`kj(26h+vR-$G);SgMGV$|M?<_Ev}m z<4iXg3{+<;LWisA_np>_mdAWy1V-XU!LLl>vA^xHeSx) z`&`~q-8uUFU+w6PS{N_yVKH8QoXj8KQE*!AmgiA)P)e$l1Jnuoo%KGH!BN)qJM-r` zqWF+RQpk93BI==Fkhpfi*6QDMrZr9D8>s471(}-k;h?1Qt@wgn&np*f} z>ZNHkRM_akh<~XMfZoZO6h{?S21fn5+Nx8Gw3D(-4h}*~$v%=P1mNTFge92T;W~xN?AeKy-PztZov=p>(IECz}=yeZ7siNF3Owwfg{fAkPZoN z4gft&jdlhQ(^6`N=AK?lYjn_dM8I*GLa(WqX49Nj$86OO9z#Fg-Vv27{!!&pq7 z1fW*mptA7N=nG7`!OdVgCur^uro-N368gIvQ$nL;JRPL7n`BI**?4p}341UBi7-^} z5NyK2t&9!SbH<=5w`+C|;~b=^oJz4~7?`nKLzrkM`QJ>wQ(7p4G2Wm-)CRi?a!-2N zjZW`I^TDvW3j10R)}TWhD={73y!G*wi(yl~cBv0K4+?uV@h}|8eOdUD`pOvFp-bbu l(H*)?==h}DJ^s=?J%-z}NwVv%hZO|al0W_T-}C3=;4d=-fNlT) delta 11 ScmbO?n{m=4#?3t}LY@E{s0020 diff --git a/leim/MISC-DIC/ziranma.cin b/leim/MISC-DIC/ziranma.cin index 91122fc4fdb198d85eec223f7b38b8e00bb9495b..fe380e9dc49f5be7dd9a35afb5565c5305c2b9b2 100644 GIT binary patch delta 1195 zcmaKs&2HL25XaR|DY^HO(_By!$+aO-DE{^!x3-$zvgu8^gufu$*?kSPtF1xw6f*Od~?Uk~=m>NSF}xDvCNjK+jSIP zhIHTpr8S_khw3CDi1wutwM0#5tY6E3N5@0ZadZN$^Ye2L;*t|?4|3Ec|C|^NqBM)(Bnu+qX=S@bBUz6BbQt&>9m~y;W({RDbl%AyJA#kS4?9Y)~Y0LBxrPa zHJ_E1%&Zv%Wc8v_DbLpKNh#eF5Cca7^95M-$!og?mB#E zWIu|zDv&--b*PaQ7XoGorNOKe9#G40+Z$gECSwTuQ<8KW#&OsmPusAnNRgrdT;g`B z`Jxbd;NxOFD-*n>WiW0&vz3bk13Z%K)8}~b-k?U^|LkPn#9`~Zjbr{2N5)TI> zw+AC4;fCrNf|Xmih0>0CiZrOgY@3~uafYOc6mqsiGB82DBw?(ca zq}s%;4Q8jO-sosBoc8+FrQ6pGXbn7AX-?B&)l(lIx#%|KV+*=O=T6XGjVu{X$z7h= z9J)d&?ZFpitdbtwgwQ-~wVEGVXH9Z@G77idb!Y_%Y>w~#`|tU_d9iu9d9``HdGqV- G{g1!6E`^)` delta 35 kcmcb+N9y8cspcM*_8t~SAZ7w$W*`RfS-1DFuw9%90QF`Jo&W#< From dd822b892722989529efc8d5b8e9997eba78f773 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 30 Jan 2007 01:04:35 +0000 Subject: [PATCH 115/131] *** empty log message *** --- leim/CXTERM-DIC/README | 37 +++++++------------------------------ leim/ChangeLog | 8 ++++++++ leim/MISC-DIC/README | 35 ++++++++--------------------------- 3 files changed, 23 insertions(+), 57 deletions(-) diff --git a/leim/CXTERM-DIC/README b/leim/CXTERM-DIC/README index 6714459c2ee..d8731740a79 100644 --- a/leim/CXTERM-DIC/README +++ b/leim/CXTERM-DIC/README @@ -5,7 +5,7 @@ into these four groups. (1) QJ-b5.tit (renamed from .../cxterm/dict/big5/QJ.tit) QJ.tit (copied from .../cxterm/dict/gb/QJ.tit) -These are verbatim copies of those included in the directory +They are verbatim copies of those included in the directory contrib/clients/cxterm of the distribution of X11R6. Each file contains a license notice. @@ -14,45 +14,22 @@ contains a license notice. SW.tit (copied from .../cxterm/dict/gb/SW.tit) TONEPY.tit (copied from .../cxterm/dict/gb/TONEPY.tit) -These are verbatim copies of those included in the directory -contrib/clients/cxterm of the distribution of X11R6. As those files -themselves don't contain license notices, the section 6 of the file -.../cxterm/README should cover them: - -============================================================ -6. COPYRIGHTS AND TERMS - -This copyright and permission notice outlines the rights and -restrictions covering most parts of this distribution of cxterm. -Cxterm is modified from xterm, which is copyrighted by MIT. -Some individual files are covered by other copyrights. Utils -parts are redistributed software covered by their own copyrights -and terms. Please see individual file's copyright notices. - -X11R6 CXTERM (C) 1994 BY YONGGUANG ZHANG. -X11R5 CXTERM (C) 1991 BY YONGGUANG ZHANG AND MAN-CHI PONG. - -Permission to use, copy, modify, and distribute this software and -its documentation for any purpose is hereby granted without fee, -provided that this entire copyright and permission notice appear -in all such copies, and that the name of the authors may not be -used to endorse or promote products derived from this material -without specific prior written permission. The authors make no -representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. -============================================================ +They are copies of those included in the directory +contrib/clients/cxterm of the distribution of X11R6. As the original +files don't contain copyright and license notices, a proper notice is +extracted from .../cxterm/README and added at the head of each file. (3) 4Corner.tit ARRAY30.tit ETZY.tit ZOZY.tit -These are versions modified by the original authors from those +They are versions modified by the original authors from those distributed with X11R5 to include proper copyright notices. Each file contains a license notice. (4) ECDICT.tit, Punct-b5.tit, Punct.tit -These are verbatim copies of those distributed at +They are verbatim copies of those distributed at ftp://ftp.ifcss.org/pub/software/. Each file contains a license notice. diff --git a/leim/ChangeLog b/leim/ChangeLog index 53879b2aef6..a52cb044489 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,11 @@ +2007-01-30 Kenichi Handa + + * CXTERM-DIC/CCDOSPY.tit, CXTERM-DIC/PY-b5.tit, CXTERM-DIC/SW.tit, + CXTERM-DIC/TONEPY.tit: Add copyright and license notices. + + * MISC-DIC/pinyin.map, MISC-DIC/ziranma.cin: Add copyright and + license notices. + 2007-01-24 Kenichi Handa * MISC-DIC/README: New file. diff --git a/leim/MISC-DIC/README b/leim/MISC-DIC/README index 5c5aef93ce9..95efbd4d27b 100644 --- a/leim/MISC-DIC/README +++ b/leim/MISC-DIC/README @@ -4,43 +4,24 @@ are categorised into these three groups. (1) cangjie-table.b5 cangjie-table.cns -These are verbatim copies of those distributed by the author Christian +They are verbatim copies of those distributed by the author Christian Wittern himself. Each file contains a license notice. (2) CTLau.html CTLau-b5.html -These are verbatim copies of those distributed at the author's home page -. Each file contains a license -notice. +They are verbatim copies of those distributed at the author's home +page . Each file contains a +license notice. (3) pinyin.map ziranma.cin -These are verbatim copies of those distributed with a free package +They are copies of those distributed with a free package called CCE at: http://ftp.debian.org/debian/dists/potato/main /source/utils/cce_0.36.orig.tar.gz -As those files themselves don't contain license notices, the -copyright/license notice of the package itself should cover them: - -============================================================ - Copyright (C) 1999, Rui He, herui@cs.duke.edu - - - CCE(Console Chinese Environment) 0.32 - -CCE is free software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the Free Software -Foundation; either version 1, or (at your option) any later version. - -CCE is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -details. - -You should have received a copy of the GNU General Public License along with -CCE; see the file COPYING. If not, write to the Free Software Foundation, -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.") -============================================================ +As the original files don't contain copyright and license notices, a +proper notice is extracted from the file Copyright and added at the +head of each file. From 2d1e38e13d24addbd515b1bec59532785f74933c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 30 Jan 2007 03:08:04 +0000 Subject: [PATCH 116/131] Removed for legal reasons. --- etc/orgcard.ps | 2769 ----------------------------------------------- etc/orgcard.tex | 754 ------------- 2 files changed, 3523 deletions(-) delete mode 100644 etc/orgcard.ps delete mode 100644 etc/orgcard.tex diff --git a/etc/orgcard.ps b/etc/orgcard.ps deleted file mode 100644 index 2b9f953dc61..00000000000 --- a/etc/orgcard.ps +++ /dev/null @@ -1,2769 +0,0 @@ -%!PS-Adobe-2.0 -%%Creator: dvips(k) 5.92b Copyright 2002 Radical Eye Software -%%Title: orgcard.dvi -%%Pages: 2 -%%PageOrder: Ascend -%%Orientation: Landscape -%%BoundingBox: 0 0 596 842 -%%DocumentFonts: CMBX10 CMR8 CMTT8 CMR7 CMSY8 CMBX8 CMTI8 CMR6 CMSY6 -%%EndComments -%DVIPSWebPage: (www.radicaleye.com) -%DVIPSCommandLine: dvips -t landscape -o orgcard.ps orgcard.dvi -%DVIPSParameters: dpi=600, compressed -%DVIPSSource: TeX output 2006.01.20:1449 -%%BeginProcSet: texc.pro -%! -/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S -N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72 -mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0 -0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{ -landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize -mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[ -matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round -exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{ -statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0] -N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin -/FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array -/BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2 -array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N -df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A -definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get -}B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub} -B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr -1 add N}if}B/id 0 N/rw 0 N/rc 0 N/gp 0 N/cp 0 N/G 0 N/CharBuilder{save 3 -1 roll S A/base get 2 index get S/BitMaps get S get/Cd X pop/ctr 0 N Cdx -0 Cx Cy Ch sub Cx Cw add Cy setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx -sub Cy .1 sub]/id Ci N/rw Cw 7 add 8 idiv string N/rc 0 N/gp 0 N/cp 0 N{ -rc 0 ne{rc 1 sub/rc X rw}{G}ifelse}imagemask restore}B/G{{id gp get/gp -gp 1 add N A 18 mod S 18 idiv pl S get exec}loop}B/adv{cp add/cp X}B -/chg{rw cp id gp 4 index getinterval putinterval A gp add/gp X adv}B/nd{ -/cp 0 N rw exit}B/lsh{rw cp 2 copy get A 0 eq{pop 1}{A 255 eq{pop 254}{ -A A add 255 and S 1 and or}ifelse}ifelse put 1 adv}B/rsh{rw cp 2 copy -get A 0 eq{pop 128}{A 255 eq{pop 127}{A 2 idiv S 128 and or}ifelse} -ifelse put 1 adv}B/clr{rw cp 2 index string putinterval adv}B/set{rw cp -fillstr 0 4 index getinterval putinterval adv}B/fillstr 18 string 0 1 17 -{2 copy 255 put pop}for N/pl[{adv 1 chg}{adv 1 chg nd}{1 add chg}{1 add -chg nd}{adv lsh}{adv lsh nd}{adv rsh}{adv rsh nd}{1 add adv}{/rc X nd}{ -1 add set}{1 add clr}{adv 2 chg}{adv 2 chg nd}{pop nd}]A{bind pop} -forall N/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn -/BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put -}if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{ -bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A -mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{ -SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{ -userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X -1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4 -index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N -/p{show}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0 N/Ry 0 N/V{}B/RV/v{ -/Ry X/Rx X V}B statusdict begin/product where{pop false[(Display)(NeXT) -(LaserWriter 16/600)]{A length product length le{A length product exch 0 -exch getinterval eq{pop true exit}if}{pop}ifelse}forall}{false}ifelse -end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{BDot}imagemask -grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat{BDot} -imagemask grestore}}ifelse B/QV{gsave newpath transform round exch round -exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0 rlineto -fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B/M{S p -delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}B/g{0 M} -B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p -3 w}B/n{ -p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{0 S -rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end - -%%EndProcSet -%%BeginProcSet: f7b6d320.enc -% Thomas Esser, Dec 2002. public domain -% -% Encoding for: -% cmb10 cmbx10 cmbx12 cmbx5 cmbx6 cmbx7 cmbx8 cmbx9 cmbxsl10 -% cmdunh10 cmr10 cmr12 cmr17cmr6 cmr7 cmr8 cmr9 cmsl10 cmsl12 cmsl8 -% cmsl9 cmss10cmss12 cmss17 cmss8 cmss9 cmssbx10 cmssdc10 cmssi10 -% cmssi12 cmssi17 cmssi8cmssi9 cmssq8 cmssqi8 cmvtt10 -% -/TeXf7b6d320Encoding [ -/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega -/ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve -/macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash -/suppress /exclam /quotedblright /numbersign /dollar /percent /ampersand -/quoteright /parenleft /parenright /asterisk /plus /comma /hyphen -/period /slash /zero /one /two /three /four /five /six /seven /eight -/nine /colon /semicolon /exclamdown /equal /questiondown /question /at -/A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X -/Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent -/quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u -/v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space -/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /.notdef -/.notdef /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute -/caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE -/OE /Oslash /suppress /dieresis /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -] def - -%%EndProcSet -%%BeginProcSet: 09fbbfac.enc -% Thomas Esser, Dec 2002. public domain -% -% Encoding for: -% cmsltt10 cmtt10 cmtt12 cmtt8 cmtt9 -/TeX09fbbfacEncoding [ -/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi -/Omega /arrowup /arrowdown /quotesingle /exclamdown /questiondown -/dotlessi /dotlessj /grave /acute /caron /breve /macron /ring /cedilla -/germandbls /ae /oe /oslash /AE /OE /Oslash /visiblespace /exclam -/quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft -/parenright /asterisk /plus /comma /hyphen /period /slash /zero /one -/two /three /four /five /six /seven /eight /nine /colon /semicolon /less -/equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N -/O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright -/asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l -/m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright -/asciitilde /dieresis /visiblespace /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /space /Gamma /Delta /Theta /Lambda /Xi /Pi -/Sigma /Upsilon /Phi /Psi /.notdef /.notdef /Omega /arrowup /arrowdown -/quotesingle /exclamdown /questiondown /dotlessi /dotlessj /grave /acute -/caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE -/OE /Oslash /visiblespace /dieresis /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -] def - -%%EndProcSet -%%BeginProcSet: bbad153f.enc -% Thomas Esser, Dec 2002. public domain -% -% Encoding for: -% cmsy10 cmsy5 cmsy6 cmsy7 cmsy8 cmsy9 -% -/TeXbbad153fEncoding [ -/minus /periodcentered /multiply /asteriskmath /divide /diamondmath -/plusminus /minusplus /circleplus /circleminus /circlemultiply -/circledivide /circledot /circlecopyrt /openbullet /bullet -/equivasymptotic /equivalence /reflexsubset /reflexsuperset /lessequal -/greaterequal /precedesequal /followsequal /similar /approxequal -/propersubset /propersuperset /lessmuch /greatermuch /precedes /follows -/arrowleft /arrowright /arrowup /arrowdown /arrowboth /arrownortheast -/arrowsoutheast /similarequal /arrowdblleft /arrowdblright /arrowdblup -/arrowdbldown /arrowdblboth /arrownorthwest /arrowsouthwest /proportional -/prime /infinity /element /owner /triangle /triangleinv /negationslash -/mapsto /universal /existential /logicalnot /emptyset /Rfractur /Ifractur -/latticetop /perpendicular /aleph /A /B /C /D /E /F /G /H /I /J /K -/L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /union /intersection -/unionmulti /logicaland /logicalor /turnstileleft /turnstileright -/floorleft /floorright /ceilingleft /ceilingright /braceleft /braceright -/angbracketleft /angbracketright /bar /bardbl /arrowbothv /arrowdblbothv -/backslash /wreathproduct /radical /coproduct /nabla /integral -/unionsq /intersectionsq /subsetsqequal /supersetsqequal /section -/dagger /daggerdbl /paragraph /club /diamond /heart /spade /arrowleft -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/minus /periodcentered /multiply /asteriskmath /divide /diamondmath -/plusminus /minusplus /circleplus /circleminus /.notdef /.notdef -/circlemultiply /circledivide /circledot /circlecopyrt /openbullet -/bullet /equivasymptotic /equivalence /reflexsubset /reflexsuperset -/lessequal /greaterequal /precedesequal /followsequal /similar -/approxequal /propersubset /propersuperset /lessmuch /greatermuch -/precedes /follows /arrowleft /spade /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -] def - -%%EndProcSet -%%BeginProcSet: 74afc74c.enc -% Thomas Esser, Dec 2002. public domain -% -% Encoding for: -% cmbxti10 cmff10 cmfi10 cmfib8 cmti10 cmti12 cmti7 cmti8cmti9 cmu10 -% -/TeX74afc74cEncoding [ -/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /Omega -/ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute /caron /breve -/macron /ring /cedilla /germandbls /ae /oe /oslash /AE /OE /Oslash -/suppress /exclam /quotedblright /numbersign /sterling /percent -/ampersand /quoteright /parenleft /parenright /asterisk /plus /comma -/hyphen /period /slash /zero /one /two /three /four /five /six /seven -/eight /nine /colon /semicolon /exclamdown /equal /questiondown /question -/at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W -/X /Y /Z /bracketleft /quotedblleft /bracketright /circumflex /dotaccent -/quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u -/v /w /x /y /z /endash /emdash /hungarumlaut /tilde /dieresis /suppress -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space -/Gamma /Delta /Theta /Lambda /Xi /Pi /Sigma /Upsilon /Phi /Psi /.notdef -/.notdef /Omega /ff /fi /fl /ffi /ffl /dotlessi /dotlessj /grave /acute -/caron /breve /macron /ring /cedilla /germandbls /ae /oe /oslash /AE -/OE /Oslash /suppress /dieresis /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef -] def - -%%EndProcSet -%%BeginProcSet: texps.pro -%! -TeXDict begin/rf{findfont dup length 1 add dict begin{1 index/FID ne 2 -index/UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll -exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]FontType 0 -ne{/Metrics exch def dict begin Encoding{exch dup type/integertype ne{ -pop pop 1 sub dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get -div def}ifelse}forall Metrics/Metrics currentdict end def}{{1 index type -/nametype eq{exit}if exch pop}loop}ifelse[2 index currentdict end -definefont 3 -1 roll makefont/setfont cvx]cvx def}def/ObliqueSlant{dup -sin S cos div neg}B/SlantFont{4 index mul add}def/ExtendFont{3 -1 roll -mul exch}def/ReEncodeFont{CharStrings rcheck{/Encoding false def dup[ -exch{dup CharStrings exch known not{pop/.notdef/Encoding true def}if} -forall Encoding{]exch pop}{cleartomark}ifelse}if/Encoding exch def}def -end - -%%EndProcSet -%%BeginFont: CMSY6 -%!PS-AdobeFont-1.1: CMSY6 1.0 -%%CreationDate: 1991 Aug 15 07:21:34 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMSY6) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.035 def -/isFixedPitch false def -end readonly def -/FontName /CMSY6 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-4 -948 1329 786}readonly def -/UniqueID 5000816 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052F09F9C8ADE9D907C058B87E9B6964 -7D53359E51216774A4EAA1E2B58EC3176BD1184A633B951372B4198D4E8C5EF4 -A213ACB58AA0A658908035BF2ED8531779838A960DFE2B27EA49C37156989C85 -E21B3ABF72E39A89232CD9F4237FC80C9E64E8425AA3BEF7DED60B122A52922A -221A37D9A807DD01161779DDE7D5FC1B2109839E5B52DFB7605D7BA557CC35D6 -49F6EB651B83771034BA0C39DB8D426A24543EF4529E2D939125B5157482688E -9045C2242F4AFA4C489D975C029177CD6497EACD181FF151A45F521A4C4043C2 -1F3E76EF5B3291A941583E27DFC68B9211105827590393ABFB8AA4D1623D1761 -6AC0DF1D3154B0277BE821712BE7B33385E7A4105E8F3370F981B8FE9E3CF3E0 -007B8C9F2D934F24D591C330487DDF179CECEC5258C47E4B32538F948AB00673 -F9D549C971B0822056B339600FC1E3A5E51844CC8A75B857F15E7276260ED115 -C5FD550F53CE5583743B50B0F9B7C4F836DEF7499F439A6EBE9BF559D2EE0571 -CE54AEC461D354A32E69F39DD0C017BD6576F1E9500DC0328E8AF6EAB528FD7B -85132A2A9995EB211FCE849216BF6D663AD649AE92DA953C4D520AB9A22D27B5 -6C34121FD688F9E17FE39B939D8DCED9EDDE5AF6DD7DC2297F2A3E1287E5AF45 -0306EDBA3C843FB8234D0DDEC7595CDE6657E499324DA260BACAE9D6DB126FD9 -AAA7368F7164F6BBBBE11EFFFB65660DA0961A97D51ADAF2136A085FDC16C199 -72BC2CA210B330C03F4252A275FEAADC95CFBC79C3B7285C4C7B5C9665909A56 -4176C37DCB569C8EED1B59C58B5EBD3ADD31010DCFD59411FC2020E238A07B83 -2439DEB653AFF1CF197533724E45EDA9810B6793E27943CF51484A5BC7DC61C5 -E97F71E04BB623E0BC9C -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMR6 -%!PS-AdobeFont-1.1: CMR6 1.0 -%%CreationDate: 1991 Aug 20 16:39:02 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMR6) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -end readonly def -/FontName /CMR6 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-20 -250 1193 750}readonly def -/UniqueID 5000789 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5CF4E9D2405B169CD5365D6ECED5D768D66D6C -68618B8C482B341F8CA38E9BB9BAFCFAAD9C2F3FD033B62690986ED43D9C9361 -3645B82392D5CAE11A7CB49D7E2E82DCD485CBA17D1AFFF95F4224CF7ECEE45C -BFB7C8C77C22A01C345078D28D3ECBF804CDC2FE5025FA0D05CCC5EFC0C4F87E -CBED13DDDF8F34E404F471C6DD2E43331D73E89BBC71E7BF889F6293793FEF5A -C9DD3792F032E37A364C70914843F7AA314413D022AE3238730B420A7E9D0CF5 -D0E24F501451F9CDECE10AF7E14FF15C4F12F3FCA47DD9CD3C7AEA8D1551017D -23131C09ED104C052054520268A4FA3C6338BA6CF14C3DE3BAF2EA35296EE3D8 -D6496277E11DFF6076FE64C8A8C3419FA774473D63223FFA41CBAE609C3D976B -93DFB4079ADC7C4EF07303F93808DDA9F651F61BCCF79555059A44CBAF84A711 -6D98083CEF58230D54AD486C74C4A257FC703ACF918219D0A597A5F680B606E4 -EF94ADF8BF91A5096A806DB64EC96636A98397D22A74932EB7346A9C4B5EE953 -CB3C80AA634BFC28AA938C704BDA8DC4D13551CCFE2B2784BE8BF54502EBA9AF -D49B79237B9C56310550BC30E9108BB06EAC755D6AA4E688EFE2A0AAB17F20FE -00CD0BFF1B9CB6BDA0FA3A29A3117388B6686657A150CE6421FD5D420F4F7FB5 -B0DAA1BA19D638676E9CF159AC7325EF17B9F74E082BEF75E07BB563C96C0A3E -6D4DF600BB73729BC4A5B134928F1370B9F07C587F79388B1D9AC62BFB1566DD -CCBD1F58ABBF1F53AD21E3BFF25EEEB046F66A924E5F431EBD7228050BE2DF43 -0B9B538DAAD511EED97630CD9A9C05CC49DC251325A93EA842C6D07B44BE620F -08E66B611F54314B0177E299304F2294F8DEDE9914736944F125A50B5007373E -588AD80D9983CE7824DA30CEE5DC3114D69D7ACEC0758D8201805B82925EF3C1 -3A6757674B84D9B585F981DDFFB42163EADF90346248E014A74E3FB3E6276FC1 -B4289FCDB4FDBE9C70CAF38E410965A3610F649DF8F81C73B87FBE27D44A3CA6 -D7883821CA22795E3EED184F4F59AC687AC06DC4DE7FD098E0EA61C494A5E960 -643D78025B1D18B4B7FBACCE2DEA453E35C08A6AC093F45FA0B1DE132F743CBA -75F2E7BE0311132C0E63C69D5182B98AEFC610F61D1E1EA51120D8A9F5DFFA8C -37C0ECCA2120E1DF7A551343BD7573FA24144A8D59CA684FF9FCC1E023A3401E -9797D658E92CED2255A273E429FAF43B0355E27EC83974BA4675520B2DC70DDA -DF783452C679BB77759479CB02FF3377BCCD8580E3D87D34CD579AA3F89AAB44 -E526EE761B0D371E27B5A02A5C494C5169651FA79795D332045B3E7F2CA100FA -FA8ADA74DCA851DA1BC7531E58EE08FC22F2F35E94D5DA013A4C9669B2825D26 -021982566B4347E518E82602B0CE5CBA1CD38E8B3CEBBFDF9E9811C896313F37 -51D5F7162441E4B2DF18A7A34326114950BE85B3E5AB465D54652575AAC03DF3 -E50E9FE8D184D33534E12AB92DF20BD72DC129A86CCC24981FF82E297D0B0F9E -0B66137443B501B5FA711C7DF380DB1F64404DA241D1EF5F2D012A0293405302 -F828BF879F46962DFAF75F44D4A394DB9D42E4874477097FF6F8DB9BC8712BC8 -661A95A2467073355FE697CBE1D8E298569935E5405C22555C40DB775A808F54 -642939D8E4F76C61B2FE966F4FB55319873127C8EEB05732A1538FE03EC2D8CB -9089DE328A396DAB3908179FEA2FC3F2ECC48593049FD23114A04B474FF4FBED -4D3B8835148CCB742574F4914B7201CE41A57A42EF61099509E5C42B744611C2 -B40581A6BCF6FA223E5B5221B8BB16AC6EEE3774130E121F23A04E1548F58899 -41C9DD31E720AE7392E4E2CE0ED4B691620CDB0228D3BEE1F4BA6E289E33B7A5 -6DFDA767F5927F00BD22D4BA6397B37BBDE84BF9017C01DD5319AC7D33F8C007 -AF43EF247FDF67CE6627D4A0B0F00A3E58DF6323BDF1100660FF18496649C2EE -6BF1D9940404E2E4B7BB00C807808BACEFF0581E38B9A7F03888BA67E73E002F -871DA37277AB6ED4FB27AF66B9A02C62313495E94113D667CB3FA94DE087C6FA -2481136385B557165CDEA492CE335DB20BFAFE7A3015C95D8C88F6F3065D7F72 -5484F8B665295CAF3E207C758FD9533889D7EE5E16D08577A97185871BAB4CFE -CC58C88B3B0BA4130727C2800D2C305855369729B8CD09AFF83FFFCC3A85014E -7358281AD0C842CC1FB985DB59470AE90BE27190DE79134F2C18447150A6706F -5597A256370F4EFCDF59A7EA8C9BFA2A194DC5F1975D7E875F036BBA686FDC22 -8E9934A3ECE619598C0CD24B3226D55BDC6BF23ED4659DE24072454622A47FC1 -ECDF8D1B202F9178BC1075A4AD29D85545F9C08E16F5BC07C7218FE4C8914D89 -BC259609E90B47B956DE309C40E2943ED6CD471A8506FD38066AB96F573E7922 -B77B4386FDFBB8AC7154342C810D452827169AB8FDB73F50AB7EB6E38A930807 -F91212373CDDBE84FFF86ABAFBAE766F519D1DA26404D7EDFFA803DCB8382EFE -DA1C3D22D195805069C848619646B126333D0605BD76497030E0D3E32EFFAD65 -F84003741FCCC4DFF67CA124B41DA9F0CAD27A1A46E38DA588B443C4301216DA -5DA7A473F9C5F04B2B47446168A2017136ABFA92F6EE9C5DA2B1A92CE664659A -027899D7BE0B322ACC0EF38EA681B4D90F5073C4B4064F8053AC54ABC1594883 -E4D836FD382F00043D97ECE2DEDDFE704F10CC450E4451679E373041B9814AF1 -0D2FE34CC22F7938562B506BC63C03AC904943C4CDCEE5D25F9B65816561962A -68EC20E9BD6E4964226F8C64DC410AEE5DF5F607ACC023BB583D471EAD0B8190 -912DC0D8BFFA623F944AA1AB0BB1545DFBA26229F161201DADB7E07FBFA9040F -5D6D30EBAF57A2EF4A82A30D67825A35E24F350F9F700B42BC926ADF418F6375 -A7C7AE27FF720E9A71817E395F33E8341B70DEF491B6C4AE4051D825B09535D3 -4A0E7B0853CC42956A0A2F1A7421FEBB020D1F178371271DA9893AA2082DED36 -F834704E1CDCACEEC30EFC5514FA218E88E8C9EBD5814124D637221AE0D898D1 -2EFDDF9296D8AD971873D821B5E972F89E24659DADC4D82EE284F6247933EBD6 -643E846894BF9F2A272965E7D3E1466C1AD086099C214CD475F5191FFA282F92 -6EE857FE6AFDD3FF7664E82E0E265CD5487389254F38042EBB5F9866C5B24154 -DA003C177D7E9384E8426D7B88D5701AE7C530A50F6D027904C041F690143008 -D6246306E4644AED88E76F83949352CE1329B1A5D07A1FDA04DA0BBE5F30A925 -740235EAC5DD32F81545836873EC429AD95E7F56BFE4DF70399A7AD2476EF29E -45517385D898071118D2DE56D7A2294CB12D3E22EA35234E752DF7F061A5FF8F -5765C7C13FC74144738679B42351E3B82CA2C91F619B5D06C1FD36661F4397B0 -7540457CCB3D2FB735BBD9ADAA24756DAD45CD5921AAB588DCC80103E1C50290 -204EC4F7F5DF74D8CFF0EEA530CA2D0E88C86431F22062276E9BF9BD68FB8517 -7245261F180FEB9CD574A82A17B8A134BBBDC9B5B7954831DCFA68E0B4266C6C -F99588BF404005CE59C53E94B767B9EFDC1E5674970D097CC221C0C3BC825F17 -62D9F00A1B46B915BC8F0BF7AB31B3F688C9C968F516FC3DEEB149981EED2A47 -C51C8E8CA61F1744B31F483A52ECBE76606F24D90B13569A546420032EAE0F29 -0A564955B4BE1058A9E6EA3B320A15282EE2449E928C8E405BF3FECE131B30E3 -77FC3A735A6E2242C1E4A27793A0E1BB63FF7F6958E5312FE1549DDDD8E15BD1 -7BB07C6564D029C830B89880B4F49207C1602EE590898896EC49BE45DA8906B7 -380D59CE86D7AAB6B0762F624C88D886488B7F6AE9F1328FC400869CE4EEFD7E -7BF55C3DFD059FA20338C9BB33D807236EA2EF6E1C0C1E9EB095DA69FE2831FA -4A0F750418D935F1F0E45AECAA61ADE9D96012511981710FC4225F5C7660A2F7 -0A417E5910F4F05D43E8AE0872B16F4E46554848927F59BDA1EBC5724ACA6B1B -6A62FA03E86D85104E88ADCBD253734F9D078543E3A9F1985FA4D4A77DF2C55C -6F5E9257851A953F1BEF7192B89A409B5566AAC7DDA66F6DE4D89FDF39994611 -5B95857B8B6362BAEA1C939F638E527CA9F58683236B1886E5763B518D5A9F50 -012A1D991AECF0E327594A12476A68C715130D197C1EE81CEEB4DE9E05F7F4EB -0F06054BA90F9CC30C27BE06803ADBE520115F0FB8BA26B0DA1E5A8D28F1CB00 -F7808BD2B0D629A0BE002C11FEAD0A59555E90851E47D466BD87069845B2A6E8 -53E054711A465359DAF057550B8EE9F11F8CA6DEFE6FA70FCAC9856ED992244D -B6D8DF2428F1D09C54C41F54F939DB26081DC63D0E8AC0690E72E76EF2F004B3 -7204E227BD70421CE589A5689FA540C2889BE8B9841193BC020FC07B7B245580 -996EB478FDB9C2F3F7CF02CAFAF3005F12CC496EA254D56F4A26D841E31B2360 -8A1716DBC1A0312F66A2B19A55399BFD9D80DF17982829C3A5F790634FD86DAB -542413C0E19CC1F40FBFB296DCF1DAD4135F688AE11C2A5896EF0C8A54F298B8 -B9C21D82E15BE4B03C7F4D0D6861F28E86D25D98292D7C7C38EE483C2D6AE68F -5CC883C30B92FFDE6D60FD21E9E0E3441C317EE946448D26F8D169A074C92CD7 -D2FE4ADA122D99FDBACEC5D884F728266B21A6B5974B74A21884CC847747F648 -1CF5A52ADB32B3CA4DF108D086734E7F57E2DD6800F22D73F1A579B06EBE6F81 -BD6DBEFF758FC63934F89E8CCE37101AC52AE651F3BD8BC6689297E04D740F6D -56543897EFD747491B65582F6C2896FF3C8521E6948745BA255720AD93C36766 -5669C5C91E00A093608D3376F3107F2536046299BEFE221929CE0414E50D8054 -F07AA336F93C01F28FFF407F6B726155F48F339D97E10D628DE2D5E0A2ECF9AC -6E17695CFBEC59A0EAF50110EDE388579FE3C3EEC98A1F0414F2EC9D3A1612E2 -849A21EB33FFED0B4A753D44B6CCF61D7DA8603513059E5A5523D2FE01D2E970 -EFC7152105BB94A40C08792A75D94EF8333B6A392C51F6FF1BE5904B5877B655 -28E17551A83463B9DD6D6B2F419BD21119B7A9D14325311066AC1A20DB8986C5 -4DB51E16782B5AE654F4C0C9A92C5A1555FB54B1B7E70DADF9A303514E7F7E7B -E99C885DF161FA302CF928BC04535666D5508D2E01514B2DC740E3715BFD603C -D1CEF587FA9AF69D6D8019A2DF5DC33D61F1D324037A06563AE6985CA5DE4C61 -28663AAF1815F8F0B1266C2EDF1A3322FF108170DFCBC13DF794B6A4E64D7202 -E4200951568C73DCF0F2153D724DBC35F1EDA6B31FBF8E1E35C6781A47D1899C -5710361657554359A7B07794967936966E29765A4E2B4741165EABA8A0ED123D -13B77EA9CAFD065B3DF2967F1FC142B0435583E6D221FD15307C8A388E2CD9F2 -F7012BC7BF2D910F639F60F55508AF5A479FA963E7AA049F23A1D8EC24A90BAF -3537A956F8F16D2242300ADCAFE145B44F89DD449B2AE64F41BB4F92DD45F6C3 -CC091487708BD252CDF835D511714F4B51749BBD34A5D812700EFBDF072A40BD -6CE38DFC9A196589D6FC09FCCBCB7CA871FCC35B25354537B959F01E84C1F959 -9E8397B308A3BCCDFA304213116594C3D1925A815B57AA7C631773B5FD518EF6 -238F548ABA462BC1D0A17E76B53CCB2BBF7E8A785620B41C8018109CB45CE895 -BDAD0F89B25B81E4A0478D4A242D3A7A4406D932C0E9FD28E65C57CC3F146E1F -09867E0FCE83F7C2083ADDA5C5A9FB5BF48F89DA0C4BBD45E7120016314098B4 -C6D2C37F5F7709AD5822EAC452FBA28CFEB01E3BF2DAF25C1B559F07152FAEFD -96641B74A4249E88962604CC67F39881A685491DA88705585A7EAA097A2688CB -FC4A8E722D560B2442B3E7EB02F34E30A8A049705DC0C1D181438E85EE53C3D9 -EB5A320A83315AD4B4D26443754B49EA70A16FFCCF753F7B1E6C7EEAD9F7ED75 -7005A52BAC977F57287B77DA642B1467B580E481D97938D1B57519B1970351E6 -A752CE77704369B0E3FA910874DC76415AD1FB4E605F0C806A1A044F300C859C -9A76CFCF2B65CA446AC2CAFF3D9148D662EB88B39D854A4A799DEBB1BF06F120 -D0DF95A54D183ABB65041EBEB986A132B2543EF98EE749F8976279A5448CD151 -896074E5140A766A0A9E95B73C737D09FB6DE3EF8E85B87F477935A04476B0E8 -50CE7A918AB5DEB38BFB8525587CC5B6759CD3C82C2623F628C116A40D3B2AB1 -AEC0D515C14191760DFDAC3BC2154A356211A12A7EE704096F258C66F786311C -03E84B5C05C311B04F1BCBF61FA40B6BB8E2E080B42178F225F37CC1A96CDCC0 -4ACD792C9F0AC7E7E3992238C0E4E88B04A93797E17ACBF04FCE6494299AA9B0 -37A73C4059FFBC949ADDBC0AF181B728AC3369CC6DCE58F7AC4A52A686B74C08 -56C30D0BF291B127F7435F8AA711F98342423BD6DD25D69E3D6E197AEBF90AC5 -E9675FFE7BF93DD5E6C8A89780ECC425B3D735A89C671FA5D70125CFE3B72DF3 -A54F27293135BD071CA5D2365A135A3395D39A508CD434F45793A610852E3D62 -1C717D529A82D93B90E2FF31629413B7AC1DF1EC4D6577980C34357F47899BE2 -CC95866E2140CD64D51AECA4BAF717F4D4BA13F1310F51AE6CF80689F7A1BD04 -1474C8E2B7A640DFCDCDECB7FF9690E8E6FF62FA9842293A1264D9C4AA5FC6DE -84C36FB9334F5F9CA1B3DC4516D4CA3BD116605F5C5D0FB2F30FA080F83891DF -1A23D9C420B3F204085591E4C88C7B26452B329DD0B1F9EDC7B065F21A4B6F60 -349D37A85C5985667040DDE858B27C832CB50CCE7BB9E1EC9C2D5C1B0F05D027 -65A743C13523FFFD455B9C8DE573E76522A8912AF192008DF97D7DED77FB56E6 -FC220D2E27CA29ABE1A138D3FEF84A0306D4DE8ABA3B65D6AACCF1E456C14293 -13A2E52EEAD3CE4D2980714C087C0606768FCE35D9F84873379C90A118B9F4D3 -6008721909002435E6242C5BDB4F85AD82D5C9D548B5786F50821A59FA41D0CC -F096FD004329DDB25C494E4E1D63065EF6CE62C5C59084082182E139109B0E25 -09B500940B0B254F6E76445AB01617C35831FF74DDEA2C582D7E1B736A23322A -4564662F5D21F638CE58055212A66C29755303AF713D54BC4EF5BDD0AF37FE84 -04986F5DB72899B3642B53E80BE87161B5106E8C0114A985CD72DB6E6D3171C0 -8AC789185A6608C45889D19C9574E8B1042846B5E53F303273ACD9985F92874B -0395250173AABA938AF4551E955106AF3D1FAB12AEF599E758278C9C4B0B6EAC -346765F34498198FDB4D2ED8EE4399921A3D380DA97F573E76588A46A927E56B -02EBBE1A628EAD4DCF52726AB2D444450598904C10C0BEEA4D4D313B03ED8BB8 -D5E1125C7F4A24F3F4757365B838BBBB93E232CEB9E8A02531B4E9D116D56E7D -5A9D547E7A00301433B3B8906D494A47B358C51E09BF70DCBE06D594E4A27C54 -83020848F8052038C052AC353AEF3E9D3EBBCD74357873ACDA704659A7962538 -B2D7829C4808D58E17B2DB2E20E464B53445674ED6B373CDE6DFC48AF4268447 -7DA072CB3B480B0D1C26B9753F5A34BAC7380F43ADE718172C399D335A2E88B3 -F14DBF6F091FA427B89FD51C12401441AD767AEEB19CCC2643FEA6BFAF53A057 -F7594CFB89E5DAECDFE36D1CA884C287B5AD943EEC86FB91BCE72693E7586E59 -F594D067F101A95A1CFE062799F9B6AE9E14E1CEE9A9AC23975B534749D9912E -B5190AF0CBA729B70BCBF2433BC8C2808CB6A3A64E87A140E4532AF41F55CE51 -2BF9B4EF348B1F8CC7500847A076EAA125670223BA1BBDC979707493F7DE73CC -78D79A4CF61F4AB8A819F9DF633BE00ACFACFC63438BD5F9CB65F7DBE1C1A99E -AE9E8141EB065D30C17A79C2FC3686F2D13A187C69353374DDE142619D7C6989 -9414C36749E400F0D56C0DD786448421F4D638A1D545BDA0DA9637953D299743 -7A4519B437DEAB7461B69C96DC33B3834897568ACF6C66628DEF7AE597ACCFBB -E273232CC0BFE67E9B89B7F0AC82F5C629E512411A9060D02623BAB507671545 -09EA818A7C0A94A01007DD0D7DD286C22B9ED463836B1D328290B3836FAB5F25 -380917C153901773BBE997031F8267CC91FE3C1916DF6AC46E44791A0863198F -8FB8478724C22BB2732F945B39E4541C0168C45FC18FC7CCAC13FBEA39A93806 -6DEF0FBD7507AD086EA89EB278DB92A9F44D9A8584754643FFFF9C411587D22A -C317E99C08DD469A3A2CB264C3899725338B923F660E1DB69BDC42D5C8BE2193 -B3139B8F53777949C20CFFE8918249DA5606C5F826997E18664085BCFC8FE460 -8D8B5EE4D0EF5D9C2F78246F757F01D2C2CE8EE265DA8038A276EA69BB8651A5 -2418E8479CB00E750644F3745408AE4ECF34B6774AA58D43D28C46DF56A9CCE0 -D7EB1B3E4010F1914A6AD8B0ED7A9104A16A1B2DED8937A5779B2B7E6F724FCF -FBAFD79D2B7840E3F6E4378CE20185DAF51CD5DCDA7F797E5EF992C9B7BD2089 -FEB3A7165FA82A23E5CB0C99003BD75E3B9B00D5308C5C71FA9A4B2E3FC31B84 -35AC901ABEF4AEDBD785E30DEB848014955D1D0B25932AD4420B4FA52830FC10 -EFDABB03B27E85BBBFA667C76E4B5A68F4BC2D2F0BF631E43DC0A18522911998 -834B89CBFE29DEF493B9E87B93D7D9D886FAAC41023231E069E6B0FE3BF904A6 -7149D092E733AA2CA5442C49CC496662F11EA262C67CD191E9BB8FCDF54DEFC5 -ABF141056F515EB48AE9DD502F285F2488119652DA821EA3BF2E7D9895601DBA -0B042D7D2CB609A542734B3F63FC3AF4FDA552BA15DA5E02C23CEB0F0BB14DB5 -2100EC71E868218241E86741638AA14DC1FCE8C1CB035D61C1F9F67EE3D85BFD -BF9EA07AEC4787D7C40557DCA541E7CBDCCDA950AE2E95ABF82633E20F2A58CF -14D205265FF7A1A3524562F62C4C3FA62043B4518AFB0616BEA02145B679BEE9 -CF367A8E5C053F22A004B8ECC26CE1FD6C425A37F9F7EA73AF4A9E9E2366B573 -BA26C25CA60D1436CB40824EF20C87734EBF7FB87EFE47C0292750EA29667BFC -5DA8A01867A94332D779082BDC1114E128ACC6518F8D9B3A21AD8AF7463A42E2 -FB7E29BBBA59189421BAF708893FBB471406F264DEF7F9CA2C42A4956F8CA7D5 -BAC73FCB2B21D6F16836D2E5BC7ED04638ED3D0C480B0E057B05075C0A92464C -6F6E151C818246B845E5056ABD9DBD8219D4086DF9BE0E13F594450B737C0512 -DE7BCF813764645FC7696D572A873CF1075B1627279D6E3EC493627E06DBD02B -C978BB7D39F80CF960354B963F4302281538C6EB420E55E899D9D101798D5CD9 -3E8FC2675D6A5CB2F2423542FB62CDD78A962EB2D63833E6DE848FEE15430A66 -AD244BD768A3BC8307C833997EFD0735A852B6539E7E873A62461F32820B062E -ED77AF1F260D9B4EC55C60C0B2658528C088357C039DF1F3F85AE16917C77273 -55CE42CAC9C5499E07508FEC82BA810C6AF5AB0F597F3174F91DDD9007100491 -1859D303E60AE00ECED21FF7258B613B342C57C22947D60DA3143C3FBC073FB4 -E41E8268DA25ED1D3E030915576519155CCDA8053BBA3BDFBA018C368A077545 -DB789190EC4E7D7EB9AAB77E54F49B07783EEF138026C7101CD5315D14E0F9FB -2BEFC34B5B1A03D2449A1ED3F26DCB75EA542C995EFE140B51B9508737817A9C -962FE2A0B3650F7770C6310F8A0DDD48EC86BA3958F5343C61A2971B413B52F2 -38E66EC71F73DBC29E6798DF7CFCB3103F1841A4D8FCE51983F03EA288BC0045 -0D3565C494E7BFF2178F273FD714ECF7DCD6519A9BB36F95E05A3F2449F89DD9 -E564458349C34A3CD770EFF268495183A0 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMTI8 -%!PS-AdobeFont-1.1: CMTI8 1.0 -%%CreationDate: 1991 Aug 18 21:07:42 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMTI8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -end readonly def -/FontName /CMTI8 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-35 -250 1190 750}readonly def -/UniqueID 5000826 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA0529731C99A784CCBE85B4993B2EEBDE -3B12D472B7CF54651EF21185116A69AB1096ED4BAD2F646635E019B6417CC77B -532F85D811C70D1429A19A5307EF63EB5C5E02C89FC6C20F6D9D89E7D91FE470 -B72BEFDA23F5DF76BE05AF4CE93137A219ED8A04A9D7D6FDF37E6B7FCDE0D90B -986423E5960A5D9FBB4C956556E8DF90CBFAEC476FA36FD9A5C8175C9AF513FE -D919C2DDD26BDC0D99398B9F4D03D6A8F05B47AF95EF28A9C561DBDC98C47CF5 -525003F3DAD7933EB57E7DB1462E9D906F6D8F5BF740206C1EC5F36E00AAFF68 -F3EF6F3A2540E5F9564D1C215BC1E7E69C7D04DA5DB1CF195613C9CBF4BAA360 -84AEF3E10E24877FBE36AD731DC97305BDE6DB1F934909FAF60B8E28561FBC57 -0F5B6225425BFDE8F0C71CD4507B82FF803E9A301397975E38A259DE1E1B4FC0 -06BB1DC2D45B987A2268A77CE8DC025CB0D1B39788BBEE149103950650171C94 -5FED1063050A90BD38605BD9365D1C2AE42A7DA3DDB9A263FE10BD487F63D908 -D4F02758BD9D7BE53E6353A25BEFA29E42B50C1D078A8B3A746EEDB381CCE36C -93FC4BD1A8D1D6ACD0D355E948CFE397B74D243EB51597D251D0BAE6884D70E8 -FEE119462E1939A9783414DF59EEA5FF1529F13869D1FF0A44935C5198CC5DAA -E1FD2A17AEEBF4974052D06734A409E26C457C06700C55896C90BB33E044A737 -46590D9FA242819B9527FD59818D8829D4EB2D26A34CC05A2CC063E66F2DF193 -8E4F9670014BC243180E45B51DDB05AD1E6A7F619EE1CE09CFC1A4F02CB7270E -4482FEDF673EDED38EF3173C475C34BFB3F6623C5E942A7797FEDDD0EF1D54E9 -1D90D7076C0A9687E334907C22F2E7C603388D8D626B0E5A62B7543DCBB575D7 -9A6BE1528EC9BC18570001092524E4FBB02F3B29293BCB4F0EF14A2DD9DB22A5 -BB33455799E8120D2A4862424AA4A382972E2845E042506FC8F6E201D11DD0F2 -09FAD8DC29C3E12B66293ACBFB13FA0F26238981F2CD52B47A8CDE6DF5CDFAAF -3113E1A6366B806EABA9C34E5D41167CD10D7B639021FB4CFDAE28CE72A93F3C -E8929A4BBA0EC700D5662AAD9EB38047C6C7C63EB3FA03B5EA9E56DF0E30B3AC -058198429E22081FFD4CCC1F3A7A88AB8A22C7C6C6448934DEC2212E89998259 -653D779091F4F7F6C0A76024363A9001817B1D572847779F98F02FF9A1B45270 -2F7E42A25C687D6E56C89BBB580DE865D7372A02F329E71E0BDDA2CC8CEE41B7 -FE95846B78982FAF79E544CEF8D72A94FA73E69ED3A5F834BBE082CE0E8D4EA0 -2F619CF8441B5E057482D71D834BC6D93BF9F7777FDD2A5216911D31D34CDD76 -8D0F805FF6A71D77AED0D540ABF995DC77C30ACB207DB2513D691105199B2555 -CA9418777932A54E99E56E5171261B3708D8646A28803DEC8EABB44E80F3132A -B273B74A56B5770C09508637BE122DEFA8A0B3438403DF67AD2FE9641009CF03 -44E39E8A56E244C56B8777F486C958C5196286F36761F2568FE1A8A6E74D6891 -19F7E393FB94388DE651E078D4D40DFD141A0FC074ACB3384BE70073C08E2EE6 -065EEF9768D260C08E40B2461EB226D820BC43EBCC49A943528B8E5FFA474300 -BEE3AE339C2E0C4B247A4F8F9CE588AC67CB6FF85ABAE18AE0F77219E44DBBF0 -C6B5958D89EA19BCA780BEBC7C29EC8919CB9754753DCF4781F34FF4F75FB52D -C00A65650B9AEA0411B117D2DB6A813F17569F8D0BD600FF94F063EED10A9F10 -72B6FF606A4778CD73CE7A03EC5F31B6B4C9D93B80921FB7109C1E9926C77113 -5AAF1CA527E5D262674D0B05681E38FE2F14916248E81C52079AE46C4AA3C1F6 -9BDE6B8A497600BF36E594079AD3637D27E2F4FB0E89F80CD10A1991CDFABF46 -C36D32D5309D24024BF22F920D954E50EF667272BFB5CAAD0824641634CA4CB5 -E7491D66A5ADE670AEF9C5B1F1B45497FF99C2361EDB1FB5C8F5D9EDAE288C68 -EA3337F3AC1EC76037252B7107C3F96746EB0A6BB2DD05F1D372B0ED5C3F56B9 -CD6BB3EE200D9A60372D4EFAC7739E2629151FDB2BC336A95260119FCE6A9511 -2937DC9F522CC0CC6DDFDDF5673A962E2DFE6EA3923A5CFE9C4EC0C69BD1DEE6 -9F56420E6E8F972A3B7462F4DFACDE97B4F821E1109099298C77FC831E6837D0 -5BEA4AE2D59CBD525A79C96E491C20EFE0138F1F9A9AA1B30367982357719380 -EDDD75F4547F1997BEADCB8B7FA9227DD211433CC05C0B804E8BAAE95171EAEC -EFB60DBB8399E83709895D5B4DC11E11FF91E2A39861B12FFA587E8D752D74F8 -71456FE15C7B6A885F2BE67C63B2D9CDC1EE5688CE99156821183B552DF78DAD -64F178CDF98390D8C1967CE7D9BDBA99AFD5A9908A950A11FBED22FF6A61D0B9 -3BF4842A22E2295DD259B0DCE2773F9D672B217B7F19A4D22BACD2DF929FFDED -EEF43C052D515BF739EB5B397F9B8762083965A85F96E6BD48E0402C85FA03CC -5CBB51BF4CDD01B891BDF1959AB822E9E6A8B9CD914EC25E861DAB64C443641C -BC2F1ECFDF4C3966E11F137787AAE702564B3EC4754982726AD67DB2A98E2EA6 -3B843D824EE3FB92888AF133ED29CA1B92A87C50E71640E418A5ABFFF469F972 -8AAE580B2E255272870AF5BBF923F9805104847880113BBFEA1FFED8B19915E0 -A0F0436BBE20C7E3FA1DCECFF072B8FBE3A100A33B181C0816CD4E28A8E432AF -BF308B89336A8710EE740E1583A9ED41C97F96D546DD7613CC7B214501E14087 -1E8F1002BDBDC12DBC8F4CDB5D2E62EEC19007B3D89407B865721C28C7579845 -04CB6EE7A3AD6032D3DCF9D01F83DE750BC8F0DFDFF13FD400AACEC35690983F -B5E04373CCBF469472B8AA0FA6A398BEBEFA8D914D548D0BB5589E1C40D7F625 -4F8E0FC08108C2288DECAC258D819FF92AFCB63954960A5B194934FAB5F4E757 -FAB4AF44176447EFE9E20B44F0E8BDCCC0925DD4703F6DA0B2E61E3121CB737E -9E5FAE5B899987C8851CCE11408B5B12D5F67DE0552ABEAC69596F377AC65A83 -25E8ED90ACA8DD09D0D9AC984C2EB9A01F3502CC81422C68456A9B15796C8B08 -0060EDCACA5CAA76549D613EE7CFF973E9091B2B8EE4B1DD0117DC140C16527B -47B335576E75C4E558E3777AA9EEDD3DA21B63E7DDDC10CBA609090099118E86 -37A4AAA5300E6DCB887E36A60601D4A02E98A547AE834960BFE45F644A23211A -3D039D63BE8A49BC421B19E6FCD8132DD37D65E88C685B1775B1D05FEB41C705 -E3DEEA6307A5B44AF3153407B8042099128F867D3924B477FE258B3A23A47757 -B8F09B52A747698DD84E7EE65C4B30ADC97F7D6A63BB621E9EA9CD76BF8F3408 -0FF1D4AAB7A5F1417EDD399AD210F59E06B606A26C69368CC896616E802BFBB1 -613B4CD2AC76FB267B7EB1178B703F33B8D199BFB0968A82B193A1A32325442D -C4FEA2BB70F971AACFB0722724724FEE9041A3232BEA3A9870939C5F0A5C00D2 -B292BEB07201BA6FF9B43D887E7F18A28AC2B9C998419378DCFFD57DAA9A88BB -B97758828F0CFD6B810FF4D2A0B2D62D06110F2C804EB4E555E1B2E0E316E503 -D30F7878704FD816B6F19D49A1F9B37CAFCEDBA771421CE1C43DF0BCF2B2912C -2E9F1105A4A91EB3BE467C8D4B3312D204915C237E09327BEBE496031CA2BD42 -EEF53F0ED5CE1F9D6496624A97042B0B45B3E59D01D41ED3DD16399C6279A9A3 -491272AE972C2F332CA37E1D074B97C62E7308EC803C251DD44A2B9B2317FC72 -345F338F335BA8A1C0F4E6BCFF7DA5CEEC539C08B26384F70724118E3D6BFC45 -608966E2FAAEA78A14234FE7547DA9C2D02EB4EA39835064BA994175B8BEFB61 -D0450C331985D54E2B1602D85EFE3A09FDA2346D13E203F3A52C2AF678ACBC01 -3980E95BDC04F2BC968C1341FCD4463783167C3361AF4777333EA568DA52D2FD -A2B34B7064477C2B455385ABCC88BCDF277A1B33C90D3A6A431DEC8BB5863B70 -E1C769932C49EC1540B1139F1300003F59042EF79953930CC90C087370B46999 -0CCA827C1F1AE29E1CE29098CB4B3CCB91A61052071A550DC52284DA71169D75 -EB5B418A7CAB2DD4D9245615DAF8D846D45EF49C331E11EF875B2C62E470B0F2 -01BA91B2141C4380CCF5773C0C7B90B4447DBA415A2372B2DA4AB109D13DA0C0 -6E5E54C9DBA4FC967F0350E655425D1A896A2E6FF676657F4241A76F9F018190 -6AC7B8F53052B8DCD54168874304FCF0530E38EA0A422D292DC6E310495B5AF2 -E2F54210227F0FE30576CD6EC8E8BA26A398BE076716C20F0972F153C404D539 -ABDFE8BCB69D8E9A7D7733A7123BDB6E7755E35B10C233DE30BCB34227D7E550 -56DAF2DC5ED812C1127B1EECE52E1485FF2DD092984B0DC1E58F13115E939B3C -9639DD3B13604CE8DCD603A13E8DCB7520461CFD6EC06F7B0B729CBDDDBB89CC -9A70CDA0840B9098C39A01DFD556E3DF37966F07921067DE045A80D5716C8F11 -BDACA5F2AF25C7527440BAACA8C5F211A3C30FE38DDF87F34FE9E3DA9BD3ADB1 -7C151D5AD23BE78FB5672C9339F8BD904AFAD6674453A3BB589C1AF295358C1E -4F6F89BB020E1A146B5855B46A366773B65CC0C449319CCDBE75B3D8AED76104 -E4C4ECC307FBAD006E98A40268DA58CFB135869C0DF12F3D9F96AE010BBD2AFA -5297D587D5C599DB3687EDFE865BF7AB530C8396A7DCBF84D196D65055E078FF -CF1BA51EDE702BCDE009D9903EA7658E906887C4BD16E91D9FD49FCA8F75517A -332077D8284E564D84789C561E93E27CA36D32DF337713FF2E91861683F6DA40 -C5E8F505640B8CE65895FACF142565AAB691F7C9376978F98B679CBE1C163029 -1E49797740BF747243A3A569811EBAC9119E7FDE8026E752C198D116BEA29A14 -03F40F6C30C571146C72E6AB8F581AA24D24B639BE55E925DB8640CCEEBF1277 -C5628599AAF6D1858ACBDA07C56A7AA9009221D0DA3B -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMBX8 -%!PS-AdobeFont-1.1: CMBX8 1.0 -%%CreationDate: 1991 Aug 20 16:36:07 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMBX8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -end readonly def -/FontName /CMBX8 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-59 -250 1235 750}readonly def -/UniqueID 5000766 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5F05C11F9A72F5DA508C30BC4BF52C8B1EC5FB -7F9DDDD0964A6D59193A389D490DAA6F6ACD02CF71C06802F3AE5A001F2B3A6D -EEB60E9DD26DBCE1D29C825A9BEFE3A6572E70DC7B60344C3E0C9C77ABE1804C -7ED61C544F0B4A3D6C7662DE8575C07BED3F6DBA7D64A9C8613AA152B74A140E -AAD9B66E0FAEED6AF9D1820F361C1269A5E90519A3E6D40782E06778C0AFAA30 -E8CEAB87054C4D156C1B14B4E8471D78648FDAC70A3B8ED474FA356393A77420 -4211F60E397D2FEFC6A8D91A80C84EB9E38E663249FB91D5C8A5CBA68BA04272 -5D5D42497E1CF5CA1E62EC2B139F5CD4D6318EBBA7AE28614D2D88709C2A3762 -611524B8A1FFC7B0FCBAF77AD8159C354F4887DB1A27781DE0A4BA7DF2CE2025 -D9278CED48584E8E6BDF30BFD24284BA1DF828B637BF84A02908BBCED67372C9 -EF44711BC2B1DA343C8D9D27A9745525C774F5D639B7AEC197CEEDD06FD27923 -35ED0D402AEEB51134665A47847429D91CF419CA9B09DC905F610F8DFC54E606 -ADCDA19D5CC68A7BC7108EC9236C64205B23CE68B9BC38EF3E5BF9E0E6ADF404 -7365C8D0436609438C82EEB2F356F79186DDF6C1C797D3C278108B1767D15178 -C4C3E8ADC2482BAB9536AE8419E5CF3EE1B6E53BDCE2A83E2E485F496A562C10 -B3F5A131BB19D1E5414C86C5F995521076340536E10613E427782B91F1098562 -3E22288F48ADE6EFA58CAEBE7C070A920C3A85F4327940DBD99179C26E3ABF17 -64E9CC6A45F17F19F3EC1C53B17485B813CB01915D55CA2034552666D5E44A96 -A0FAE064F599AEF095CA1816F7066EF0AFB220FE1DF11FAFD503505C5E6793A2 -6475E95FB467E2F3B5E7C6663A70B15698A1D158E23D3ABE3B6942B24832AC3C -13F258038DDF209525C4124806A369ADB0423C2FD0F823AE3056F380B7128089 -689FD4E84B455C7EC6C5BFEEBEB422E156C67D7E56B8267EA704318ECE801014 -D563FBF79D9AE4F8C41CC649EFA07C8FF9FDF6109E05FE58B92CCA7E26204CE8 -05A20B86CE43C9EF809DCCC2E28021EF11EDBF36F6EF75E9AEF7FA793CB81E47 -E2618947764B7CE6C3B94321D6FB8B824794362CC8CB6BE9EB3FE6C601820830 -E7C6F16E48574F329A642AF235347CD0017155299B70CD489095443A726C89B2 -7F7110D2C8643B1FA3A938D53C087EA3491B9EC4E5B213815A281C03E8936424 -614FF39012545B995E60E3FDCB92E45F51BB69F8683F62668FED702AED16E709 -8FAAD0CD9355995820FE80C4496D133F1714114FC89E871E2F6A994A4CFE14A0 -0CB974E2ADCDD20F11FAC0101A90C215E40234B027DAFD9D31530B96239816B3 -6006A6A69E800D7EC779FD10C721F7A476C02BFE5FFFB04DDF1B12D0779080A0 -0279EFC2D4BD5A8F224083C15008218EADFD8D6089E79A4BD0EFAC995EEFECE0 -83ACF32C0790A54F6D04C945ACDF739E06690A00AE579B5DB9C91D21731DD420 -5E2891FE9E43F0F78B797C299F8C6EB6B0AA2808E28E5A01A2BA1FCFCB54598A -E5C49FB68DEE2A0101CA67B827122072AD6E53E0DD6B62AA4A41EDF0A3C13DBB -B42D8C0FB4BED03ED493F38EFDBD7157D84183E726CA215005699ADF49B6A5EA -2A2F0B7599A783CBE0FFA0AA965969AA222977A13F88EBFB3C134B4445EED5AB -80C9882E54A5E1DDB9014DB04FAD3D159857FEBC2CD56EAC237BAC2177E02C74 -0AB0C3195B3847D5D21EAC3AA0F3B916664370D6B366F877DA0BFE4A282E96AA -F804B144DF7DE52415E39877B8D85D55D40E3B8BE0809BD5AA0E58278A9F5EE3 -33FCB97E79EDA72DF08A258DD09E18D69E8B2EA33E4E1131D58EE27B80FBE72C -3F513A556AB5A7A4C00C6332D373E96BD0B9F037BF86ADCE6481C7CD44A0141B -419DE72F671FAD0C4041A819F9313FC7357F775FA341F290FA4F15DD9F5742CF -B969D56DB370C3A8F94818A1728B00B44FF035CCF32AA1F31BCCFCE4FF49FEA6 -813943645ABA47BC8E8E51A709EF55D7125156925FF994974EFA2E9BF696B153 -B5189911933C09246BA6AA23282496C2551C4F879D2A556217DCAB15EE185070 -840051E3F27BC72676B39817AB3A2AF8824151395B50DBC3999549F9AE1B6D90 -47EE409A7E1816B588A4864C783FFE112D73928193B1DD3359D9FF1ABC73C3A8 -B29027ED24B04E3AA855DC1F719AC8746BA11FA5B676BC09DBC80574114F4290 -65C30DE7F659BC1A2E5FBFB5286624B1AC8767508B0F178B3665B53BAD6363C4 -816D94B542F6AEE1E824420080AA591D66F6348A7C1225C098309DC1C491E80B -5B1EDC8B75DD42A89BE2C598E58A3E4DC4B0B8944318006D207699E492031E15 -FBA791B235D7F677D14AC516B76700859974FB8820438F7BCD3D3B3D7D7D008F -3880F72358A882ECB76BFAE04C1B8E0977155AB62D07D7AE038C00C267C6D9C8 -FB31C40D91A6371C0A3B0A8B7E4C92242A924D48BF3335E80C33EAB8B8B11571 -A817D8993A9C238DD5D8A6B91BDD18223B0C21A864F190E012AFB44216A9983E -5191F4D77F7A6EE8E2967438C8975EEF92E6A436717FE2B13B2B65B1D4BA6E58 -48F4E97D41910B3C79E72B84B23D446B96EA9E74A502049A6A670F40BA362A74 -8920731738746163937EC778B249AFFC20603A6BC546E139DEA7F5FAC96723F8 -6544F0BF630B274977966135115497C1AFF7E581AA7B1B4C456CB15474929C2A -796E752106F068D3B232D3979B27BB4C28098A657E1D4C76CB470D42BFA072A3 -1E0A1952C2DD97FAF260EA58C755DBFDC679E0CB0F20B8A25C8DCC86BA990031 -F16B1F3AF1714386545B42ED4F0CEDB0B3935D3BF86FA4D884A58A56A0737792 -094F830BD1255B695BD756987CFA4AE5030E1B24E9565289AF240C76D78D7E6E -6299436C5853BC086D5F22A5CCEF4234E2FFAFBAF3F4F0B4B5299D47A2C6DF9C -22EFA43E822B6140EB66BAB6268F66DF737764E84134DB9AA6BAF0663BC73421 -B7888BE30321CF239AD0AEE6B1803EF817F8B6B6A6F274D87E88EA67135BF116 -B2BBB8E8C9EFCD757A6ABCD2F799CA0CB381628507118D1082904B728534C129 -07DC200EF69A137D09D5B31A8E3EEF61C1AAA3DAAC733CDABBEA7577201938EC -8C58115FDE70557319A6E6F7B3A746CE653AD77660FCA75ADCD1FE75C1D42DB4 -FF0CCF21DCB92274CAEEAE47782B0033BE1A5F08F98427C38FD7D337BA2DBEB0 -473157DF41B432B3859823FC2EB912C3B10FBD381CE5F4B7712B1FCE8D9AF5C3 -9FD44A255163880A8104069DAE3199515D813BDC58B0348BE7C1BBEB4105B1E8 -D33431E5F536FD5FA5C60ECB139F47402BF42E1228C2E08C7CAE985C9EB7E3D5 -1A98D830DF57DE98548ACA2C748C18FD938F30CE93F112410CC35C8D76690715 -7A0D8F4726F2E31A722E8F76DFAF3A88AE7969FAE1EDEF99EA90A19A9692899F -A4A6F4E9C5724B5D8688A0EFA7D2FE4565B05FF5906046BD1AEDE1E992C84289 -E9BDD813EA9E87791229ED1E267A3023B53F808F1F96EE21049F02E6703A22EB -A1ACA6DBB4310D15DC12192150BAE79EC915281ECBEC904A49301438F53986DF -E7EB0EFC44985266EC846A4A12AA7B9A90E3799FFFF4110D311643B2E2EF8961 -A61CBA357C947A91056C798B23641C2CF30FB4B38BD53E7DB9AFB0B8F69F1074 -7CB154A179B796DF230D1ECD4E6569EE80190C6361593946BCC005EE3732D343 -16935D2FE49856756B9F87DD6B8DE288AA3A3201FC7E77F75A42CD95BFB42236 -0C1DE3177DA2B50F1C68DC36BFC189EAFE388116160F65EA2626D9B7CE44C375 -7D5FD83F8E9B8E9609A9B46777932A21B73ED98B8C714A954EEB2DD9FA3937A3 -DF41FE76D214E9C9D8DB712B275E91F9E32F31D98E30A7D0B3CF718A52134F86 -D1E088F91FF3D86490EE0852AF23D9856F271A1617F6B06E0CE1C163D7886908 -77E5C0C522E0F0AF8E7B05205FEBB92C68FF99DA858BE00E6C7CBFDEF8ACCC60 -FF9E48E4F5B1FB95DDB11AB4CB09D9E59E4B981E2A59F77881E2CB31057A6416 -5208B180D301DC13F842CEBBF97AE7A3523EA8C6FEB5DBC96437EDBA53F78730 -93EAE0A81715E303894E12977EA37DA3559AE4B5AC49B84E44B71DA99F487A55 -CF35FD75E5EDAC5397F373B018CBFF45E00F704D3AD2CBA79F1119C31EA1475E -3289FF427407ACC5F516CF88F3F762543D765609CB618ECD786425F54CC509F7 -7734B0E217F638A61D169706EEA92A552766FC0ADB2D87AD46D8EEA079CC96FE -8CEC5B7E61A87FD26BDA35F8508177C74B42B694A6BAA8BE7A906B30C5CECCD5 -C0CC4857450612B69DAB66EDD6BE13E9B106A26DAFF419095859D5D1D01641B5 -B34155887DB441C5ED0BCE1A7B9E12497F681BD03FAD87AFC6BAAFE23B406427 -763455BB4B9DA86CEFA6484BE30BEA1E43FF8C3007147745A35F283CEEFE1866 -26DAD4A22200F50E638BBA2EFF73C1DC358CB9C1D377E6EE9E9A18B8ADCCA028 -FDD4BB09DDB37C0DE0E56512AF00C57D4FD02B6DB966ECFD0BC122A55BB9FE05 -F20D682CF3FE2954F32BE305CAA9E50BD652D52460152B9149E891D419FCC078 -E9EBC6A940048EA2173C0CA463D7DE339CCAB9A86467CD1548066788C54FCF5D -8C87CC51FAF946C75EDA7F6A9165D42E5F5BD629B84F298D790523D5AFB2FE10 -C2B9D578FAF1748BC0EB868D498BA46999F36722A7C38A6A7B34B85238F4A640 -ED5327411CA5D44E22219BE1157F163C145DA6E93ABC5D0DE2B3A7AB01EA33F1 -2B46502148336F06D6501AAC93717117BCE587FA86DA114DD9E264F5B1120A08 -AC1CF7C42992AFE0DBEA926A731FDB4996BC9405BD35245A6D08FAD20D3FBB49 -3075948A25C1634F0290D5AAFFCD7ABBEDDD607A7250D3023BCF2D2002395BBA -B252F6D039EF1FBA7C71C94F45029FD935F5CC48F6277B5C843881569C5C4AD3 -7B54E2248A81B42FAE507F105CFEB1C3EA4D99C9451A05829733D2AB14F26B26 -C02D1496C8EBB12425A2B90E94E76C507C14673665DDBAB34668C44BD1834992 -3542D09B76604E40F61B2869D09E568E03003F15752B066E4CE03836F49E699D -9A4AE3C95AA7C73CDB829E7384288A696CFBB0169BD6A38AFA1D514CA7F1145A -9ABA828991D7C553A30F340FD31ED6C6FBE5403E983ED3792A3B4BD34BAEA85B -2171D8C91E3B6D8C44E9B464B1723D035BD38F65561AD340C1396CF2153E166D -EC384FDF9BEEFC97CD9542FC26601AC4CFF9AD232AAC0C2E36FBBA289DF156F8 -B5872E75BA8D7947433A935387F49100C80213EE8F55622A7BDA1531FF68E5E3 -6810922DCEAEA6D335021087F623FC7FFCF401C40D848AB54951788FBD03D87D -6CB419871FCB786D3E9B3C67A0F9473D1437B207904ABC36532D01FEFD1CE90D -45E201D5A119F18F22A820A28D74FDA3B36D4560AAA27C7DB2881BE51D8B9D5F -D8BB25D3CDF776CA9EFD032B9EA3D4337A393289B02EBFF68727F8511CADB4A8 -82C08DB25B1193AE786E9AAD1A929519A93CCD44D1FED5C82D5FC461A9B19852 -48E075C46A8C00A10CC95F32B2E63367F95971CD81B60CB3D5820E7C0A14E2B0 -00681E53305C074E6DCF4F2C0E4D7F5468868ED3ED09C1CF7D19ABBDF904D2B2 -5250126EB91E19F24EFF107D86BD4D5AA7BE3B23E2782C7EB3018D1E23E11526 -03B929656A4ABF84CBD36304951204FA43CCD202225B59E6EEAB55BE99894501 -6FCB70F8F01113CBD194AADC48250D1DC39C07D578D3B883796D2AA489D197F0 -CB13E7BCF91121B7019F92431786E58CDBDD29E46463DFBC06BC43254E7D5EF6 -8377EAADD1F4B6C80C6CEFED86924F4B9BC4FFB42250ABB944862C39E9498CBC -744E6838E7AC0BFC57B1857898D586C3D1CC2F5C344A39CCF0955D95649962B3 -9B2FE61EB993FC2A0FD2DAE84F26CE93489B12B921ED8F7B06F08BD1D3967366 -255B1E5C01D7E1999EFEB6D5522901650DAE91AF9179787DE84D036469ADA85B -8A4BC32248E176EEEE808C72D095F941BE5E6BD14D1C82D5402FE177C6EC2069 -842B7073935BA15F5C49F275F878C344BE880F01DE28C735B1B30424F63D8670 -C4CF154CC98F030B2259798F9E62F14B5FF3DF856B7BFF262B88F0EB12C7AD29 -03D0C3AA02A3D51011057FA9C1D06D56BE593137A8532A60B6DEB05BCAE23DF5 -02F05CE14181B7F00ED410ADE26B070C1FA51C22562698CC442BB5BC1E2007E5 -BA70DA947C0D4613C0B1925E7BB88A7B82383D165B3D8A045EBD8DF273F5E174 -E7F66051FDD55E9560102CFCC1D5523BCD843038A46C8BBD7142AA2BE7B22A11 -D822E93F01F25DF7F1F89833B166F3CD0B1631EF2B15DE9E33F4220AD53D7291 -E43FE0BD7B47CD0B89199E206B36FEDA5B471BB5F4B14D96529FA3B053DBD9AC -3F0D45357F2008EC4A4194A6EA0497E1977D6F4E5C35C013DAC1281CB16307FE -2888BE19CC22892556C9D8B1B2BAB7DEDE89F39F00AB6C6B1AB3C6C61FD98009 -A8DD8E2BD378B724B72D866CDB1C497EB3A270C6BC423BAAEB11BECD4079F28D -5111F14CBE73EDB6F327316641BEB1E987779D42C71F95E8E00BD3E205427215 -E2EA543A83124CBAC0F79347F9C801E255D553EEC4A62B718D4AC2F54EBF31BA -5522AF73E9680E62B122390743D879CF0E69DE4F4C3DE374EE3CEFF1E3759407 -2CED877D736F939D30774F24A24C9F83473F9BE23AC56BC67BCF3D29A18D28F8 -5BA0C2AE83A41DC4C3EF4F74A4AA78787D0B9146BB375F3322FE40E994C0E12E -CD0AE0A276911061FD23186374BE6EC5833E6ABC09E1AB5C46B098B1A1AF33FF -E11B1E730819A27A2C768C003D7E5E3325AC3D51AC9DFD993F74DA68CD1A7698 -D4BA04DA1A690A595FE3340D702D57678187ED6459A8C8128F164F7851871D91 -B922F2F30A99286EBB3EC8E1501599109B4575096B89AB5D86201FE35E193295 -886322EF4F72623A7903FC8AD577C70D80ADEA4570DE5BF89455CF407275F7ED -7265752232EF39EB140725C03B25B832EED91CFBED42042CD6482B161A649891 -F12A097ED1A99B77B42459A69017D113E14788ED463571086D293EB9A29762C9 -CC304629324B48E67631AC2A56D246B4A77746029DF182DEB8DA0D9D2D845CAC -69FB6D6CC03C0C1C021F6BD8838520008882C2FF0D7D5B5AD98D3869E5C263E9 -A4E83BDB6C1074CF2501247498DF02449A1215F4345E1024F9877FF86D441F17 -7C3487D6B2B7D07BFD0B33EBB519ACC3E7411DD4D2C096CB9BAFADEC8EFDC904 -0ED54AEEFECF1E96D0614784B1B9DC8F1D856F390D2C0273FE99FCC892763317 -A26940B09B46D79342E159D2B5B4B307C5BC1523EFB1968504B2FD69AFB37B20 -A787F7295B6586626D9D0F480E34D366011E99FB01F44C45CCEABF9F24B52502 -C4FBDE3790BBC0B9A4B8579294E692363B4A496EB236F77F319C0B661C42FB4C -3849B8E338AE185E904AE8922341CC0CC18604290526483394D43947F34F534E -8A1A0C028771267B757EC2E356BEEA3C0C42C19CFC53F84D9C81D03CAFFB8944 -0AE6B68D15CDADE9FE4B31F9DCF7999EA3D70A3EB09E20D2DD5119A4425E83D0 -825BF77EF18C6CB6A134D513FB9B6E623CCC3482B52DCE326C6AA77BC464B8C9 -AE0D7A0E9D9D96838B2612A1C56DD1DC475A146DCC08918537F7D7D8CFB4C632 -384F9591649CCD36887163FCAFAD51207D00C7567C81C72EF4FD7079C322BDB4 -9F92D883A7230B55AE2B7CB33224843B8080A748CBA3338038E3CAFE39759254 -8C25295A497199F99F66DE767BA520FA0889CA2947FA4E28AE74FDF80472D5B1 -5047D83CD272ADE577283B6FB785FB10043E7BCE5090912D544CABE81A784EE9 -27CB0525FB5461D84A221C8A66432D8C0F3D11801B08B5A0A6E81BB30567D0CA -B58D2C33D90C300B03D494008433071BA6A245EFA16EE229CE4A94DE6DFC1A41 -AF69154DD23AEA4972EA5067E894ECF9EEF3E4671D00B947BEA81DBAB8CC01DB -37AF810B5DE58EF5B0089C6AB06E8DAB6A71887741C0CBE58F9864B7E4FF3013 -D6CE6A489DC5729AE9E21863FA566A00F573E63F172748D8F6231C0F211947FB -8DE5AC7D3C4397A24974BECAD814F9FCCE56B89CA779F39B5C73242B0D6BC5FF -0DF7FF155DE8180122FFD2C2ADA2689DBADD7D26C78586DD0310C838923EF309 -7429A96FCBCCF22F968875B92AD7FE9716823C54D50CE987DE5F487342BF69D5 -EDE136B7E2C92C55B3A378298225A525C1D04E187997302B4F75D0672547F227 -06F9A21C16B40CB112B3D1E0E02B701E657666E4A16E227578B68A9DED734A1C -32AEC59EE64DEC565BB123C481AB0AB941A14FB66667148F1C13BA3C48817735 -207D0A17F0860C7A2E82C5F4E1201635BFA79AC0E6CC7A77071D32DEB1E35EA7 -5CBB675DF5D68E4A88CD8DF04DA8D6CE1156BA93967E4DD90A5C1E72E3A228BA -50BD4A3AC049E501F76E76F55909368A8F76E0EB8D85741F8CD9B9D5C6BD424B -C25889D930B3A6EC36170A4CEF7E3E274DE7616000C14BDFDC726F323B4E3429 -74B7280C12FE3332FAFEF006A7BD47E97134EF23D3E83DE9A8E04D3E914F3510 -15016B4489959321E320E0BBA88D58B2732EF3655703C58B64CF71C1D5A2723D -AB7C59AF13AB1ED12A39ED877BD06E1748FDC97300976CBBD128BB054CCD8405 -6F495791F69588AF6298279D065341A47CC018CB76EF3A1F7B78C16450E06D1F -879107BA9926202B55FA95FF7F685D7BDF1D893FEC66DF13CBCB1FF992D0998D -87B62C35DC4991014E64F9BDBF5D47A64949EFE4F076C5F5610EA4A743378116 -A6739DCF540EFF064EAB053B9ED34743C724E7D2C6CA542D150EF887CA78D53C -A96ED7F1340B2ED6D5A67F5513DA63D4909E1F8CBC25ACC24B743A3B49058633 -B605A132FE9F9B01EB75243BFB248FDCE25E82FA7B589E5403B8C1B822931D03 -ADEC24EBFA8AE740E7692AB5418E71ED25885FDB38087E3755227BF9D7D14CE0 -9DDF48A7CE11128AB6B0A53A75C0AB7B9CD68FDD2A4B29217443CEC5C8680222 -CBFE6EC20F17193ADBAACD485D8333A95276C071B0A8385E43E9D7CAAECDD39A -D649CFB1EC72212C5296D1AACB75EDE6D4360F2EC9F441A73AA7BC2AA04ED028 -4B95F1264DF0F21A969494A1E959372937C624058A1B37414254BB718BBE99E8 -5DEFA7C0EC0D741D7612F73044AC37BA46564ED2307CBA6E22264B3539020A93 -E2685648B95216CBBD4B22EDFE51F4BD6C91F41828A00F844660B32A5BF9C5C7 -D68A46412DABD78659AA24A4D6BF67D2147972C47AC2C3217C55F95A992205E0 -68199AF701DB276C7A53D7104560A645E89EE2CABE14B5DBA333859D81C20293 -84EA8DF06BA4AA429FFA34E5C87CCA5525D360C5848AD2CE6051564B9FD6B454 -A2E4C1913E0EA6F7B5E4119026CF2C8488D5DDB905C64D5F07378B05B9DCF5F7 -552EDE447A018DA29A677BE310D0B6B22469F97353ED39C6BF5526605EE7941B -9773DA131070B75AC8F50177659EB138A07DECE0524EB34DA9F3EAAFC01C0374 -728B0202ABACCD138A1E7F1A4B3C006D794A19596641959CE10A5E83F848A919 -E6C0101EC00465563F1BB028A0882D619CC2D923E9CC4B1C85BDCA479F188E52 -2A90133B45626B6623D039B471F9D9FC144E5228207DF1A8035BFC0301CD173A -7A7B828D27CDAD2A0B4BCAF8C99C62310B04F72EBBBC458C785E5F23BE9D1459 -8773C9C0648E11D92B73D49BC7D587E4E1CE1C0E93FDB67B432C35A21253775F -754EFA2148EC95CE33B6686BEA49224E818533235E8493364C6078513FCFB982 -4155EFAA41B59986DADBE962285C9E842AD3DF0DF9E9075D28E1B45BE27A2AFE -2CF48B90ED76F75C4D40A48649177285FD19340660BB45564D70D179772CEB69 -D701FD356CF5A551CB8B36EA1E30DAECED401294B7715509417F08BF1CB7277E -C73392AE92C0DEA0E8D08E0E4ECE92334ECED69508B32C565F1E54B227F57B9A -BC49EFA298E8364979C63AAF76F1129836C32F04286271DFD85C5EB08BA45FB9 -097409B5491F3FD6A921E5385EE763B6F9867EF2BBA496AA64529CBBCC534AB9 -165C59BE8A43CB0BC47DDF1F6127A9A9DE5E69126B5B1C54B396C9EFA01BE602 -3A7165A39E8F80E58EE14E6AB9A8EAC5EEEED389ED027319E66974B710E887C3 -9EE4AF6AA8387E81CF302D8D -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMSY8 -%!PS-AdobeFont-1.1: CMSY8 1.0 -%%CreationDate: 1991 Aug 15 07:22:10 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMSY8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.035 def -/isFixedPitch false def -end readonly def -/FontName /CMSY8 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-30 -955 1185 779}readonly def -/UniqueID 5000818 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052F09F9C8ADE9D907C058B87E9B6964 -7D53359E51216774A4EAA1E2B58EC3176BD1184A633B951372B4198D4E8C5EF4 -A213ACB58AA0A658908035BF2ED8531779838A960DFE2B27EA49C37156989C85 -E21B3ABF72E39A89232CD9F4237FC80C9E64E8425AA3BEF7DED60B122A52922A -221A37D9A807DD01161779DDE7D5FC1B2109839E5B52DFBB2A7C1B5D8E7E8AA0 -5B10EA43D6A8ED61AF5B23D49920D8F79DAB6A59062134D84AC0100187A6CD1F -80F5DDD9D222ACB1C23326A7656A635C4A241CCD32CBFDF8363206B8AA36E107 -1477F5496111E055C7491002AFF272E46ECC46422F0380D093284870022523FB -DA1716CC4F2E2CCAD5F173FCBE6EDDB874AD255CD5E5C0F86214393FCB5F5C20 -9C3C2BB5886E36FC3CCC21483C3AC193485A46E9D22BD7201894E4D45ADD9BF1 -CC5CF6A5010B5654AC0BE0DA903DB563B13840BA3015F72E51E3BC80156388BA -F83C7D393392BCBC227771CDCB976E933025375FFCDD9E2FD073678A57A333F9 -6BDA68191ED103DB904FC6A75017A9939B1F14A711BC0B140F6C4E6C217EEADC -2B649171318049FC272C351B1417B517204D5DBE34FA6D6B93E1E6086F880CF6 -401E7F67B5A91AD4822EF4FFFBB79015651EAAF84024DFD7A74045CA18515E88 -7EE363BCB8BF9D97ED631D5C1CD97006AB3AC94DA76099C945488544974B0FE8 -A3F15D97A0BE56338625A0D0CFE8566B8FB3A70AE8CEC759E7B52084939014AC -604115957B2FB7E97BAFEE38905AA81476D225B96F0379A68BF3270503F3B605 -A77CCFC93318E4C44A1C17F011F4BB61E95E82A0FB39A886C2CABDCD59D5A7A4 -02936AD8819B50869E5B3080E67ACB7DF8FAA4DE4F95E8679063A8A442696EF4 -E0F13F9F966B536A4BF33A36A9A43B025255B682726E76504D03A6724E62BAD6 -63F90049D953A490976D70C6B1E9B8EB268C452EE5DE8387D12C679EE0BD9CA7 -FD250629BC87CB357480E70C655668AD8DB83DD15E4D4FD79FE1B857D70F2B36 -D49659715E1985E9945F4C694D004220D03FF36AA87F37F403654BEFFF0730C4 -FF9D5D6D172B12C72B56F4EF01F647E79C2C2FF41D8D8209CB316FE7CFF71F6E -5200D1F92FD7928FB8E90B3B0D6C51F2757B30DB38C12874628ABF1159B244A8 -0957D756FE6AF818421A7D15AFBB29D24FDCB4BF305BF5C7D2AB5ECD83E3E1C0 -1C2AF2321C8B497AC074CBD0EC5879AC61E5F0549F39BF447A4B6A88870FAEF8 -3F4BD675FF5F0901E3B88DB5C6BD3F6BAAF9A842C2724D007121E63F33CE21D5 -37D3F50B33FBB92C371BCC73C7071D4EC40C8E0E5F -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMR7 -%!PS-AdobeFont-1.1: CMR7 1.0 -%%CreationDate: 1991 Aug 20 16:39:21 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMR7) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -end readonly def -/FontName /CMR7 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-27 -250 1122 750}readonly def -/UniqueID 5000790 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5CF5B8CABB9FFC6CC3F1E9AE32F234EB60FE7D -E34995B1ACFF52428EA20C8ED4FD73E3935CEBD40E0EAD70C0887A451E1B1AC8 -47AEDE4191CCDB8B61345FD070FD30C4F375D8418DDD454729A251B3F61DAE7C -8882384282FDD6102AE8EEFEDE6447576AFA181F27A48216A9CAD730561469E4 -78B286F22328F2AE84EF183DE4119C402771A249AAC1FA5435690A28D1B47486 -1060C8000D3FE1BF45133CF847A24B4F8464A63CEA01EC84AA22FD005E74847E -01426B6890951A7DD1F50A5F3285E1F958F11FC7F00EE26FEE7C63998EA1328B -C9841C57C80946D2C2FC81346249A664ECFB08A2CE075036CEA7359FCA1E90C0 -F686C3BB27EEFA45D548F7BD074CE60E626A4F83C69FE93A5324133A78362F30 -8E8DCC80DD0C49E137CDC9AC08BAE39282E26A7A4D8C159B95F227BDA2A281AF -A9DAEBF31F504380B20812A211CF9FEB112EC29A3FB3BD3E81809FC6293487A7 -455EB3B879D2B4BD46942BB1243896264722CB59146C3F65BD59B96A74B12BB2 -9A1354AF174932210C6E19FE584B1B14C00E746089CBB17E68845D7B3EA05105 -EEE461E3697FCF835CBE6D46C75523478E766832751CF6D96EC338BDAD57D53B -52F5340FAC9FE0456AD13101824234B262AC0CABA43B62EBDA39795BAE6CFE97 -563A50AAE1F195888739F2676086A9811E5C9A4A7E0BF34F3E25568930ADF80F -0BDDAC3B634AD4BA6A59720EA4749236CF0F79ABA4716C340F98517F6F06D9AB -7ED8F46FC1868B5F3D3678DF71AA772CF1F7DD222C6BF19D8EF0CFB7A76FC6D1 -0AD323C176134907AB375F20CFCD667AB094E2C7CB2179C4283329C9E435E7A4 -1E042AD0BAA059B3F862236180B34D3FCED833472577BACD472A4A78141CA32C -B3C74E1A0AE0520B950B826B0ABD81766035058ED1654D00FE541CAD1D246C0E -DE85FCD3C0BF7A70B913487B1A527EA823C00C39DB61FD6641B140FCED8580D8 -046741D2494B4E7CA1F120CBB0A532BE049CABEB70A39018E8212F8178E93C98 -B377AE2880FE39BA0EE29451857DB34964DA26ACA4CD23CE284ACE37D89571FF -CB67DE7AE379B74B32ECACC5F3DE0566CE9EE820E96F27653C75935851CD9360 -A83C7EE8270383CB8A80715BC2B62B1F709235A5A73D99710D7665182D461095 -B98C8A0FEA44F0F1959055D50BABC7880E7BA1CA4CD72531A240A622663A0A1F -DBE4FB907F97515CB1100282C9A0241F65F84EBAB1701FC105BD25F82807F4CB -6A5EDB5CB156A7D55F64146818245C112DB0FEE9E0AC96B4B2AEB27F89FE0560 -727D85FE6CFF5C457EB1EE5D7E2A09979684E2611BA57A1BC7BA4E37DC4BA761 -557D986F9A8B495CB7212507AA79C297B0665CB5883F2332DF5CB088A92E24BD -1EBADCAA515B567FAA9E15E7B8DA60C1BBEEF5A2E0D4C0C67EDAD822B5E8D81C -6D29928726D36EF0A9238476FE54D4990E8D75FE0109C0336DD50F9021307213 -F69C700D2291C546007CF3A5DF3BF5ABEEB640D3AEF585055A65EB2CA7AD7F11 -22182523EAA8FCF029C604212529C03F179566E6B731FFE2283D6402A350EAB9 -3C7FFF41383A9398B33C48FB2F9A8241D65425FC5E49DC9BB97521D91E44B3C8 -B2EB1BA8D532BBF175486D1DDB914BCB92968D342B5C1FD6FC72DA462FF68992 -464BF0E00D05C2AC3729E598991C6EE7354F0C400296356ABAB37A16FA504DC9 -B6369F88BDB7061D5EEB761527E588B4A6C83169B517991789D664BB543A0E57 -6F2529BDC7838AFB93D53D5794E57B65A7DB00584492C046F72CE19E4D1B177D -1D951362B2F7CE2B720B305D45B7FC74183C1DE46073D8E20FDF8027FBFCDF40 -5F0950F5AAC19AC8E8D9A57A271C0BB212822798DCD068B4F05DBAC2AF7BB25F -5DFBFBFB5A51ED26ACB22541E1971002A5D97B5E148F8F087A3229C4 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMTT8 -%!PS-AdobeFont-1.1: CMTT8 1.0 -%%CreationDate: 1991 Aug 20 16:46:05 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMTT8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -end readonly def -/FontName /CMTT8 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-5 -232 545 699}readonly def -/UniqueID 5000830 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5F0187316F83DDE3E2D27FCDF6C5CE4F95B6EE -3317BD91B7921F3039DD35FEA387D5CFB6C6E9DC84C178F3432994FC7FAC6E5A -ED41A1E2EBA350178FBFEB45944511731BA827167DDAC238FC69A5486B995477 -C469E2E27493B0B711DF8E267D3D5613B450011921685147114106C9472580BD -F531022F6DF5432B2A4EBC51A8032C7F9689B6FA942D849B29709631613DA68D -4DF7B6F059A19304F40A3C3580CE3B51D79D42984194D4F178801720892FB6E7 -61FF43C63F9256B5E9F4227B1378222BAAD4D52C77462DF01892220E11129C16 -6C9E45BB9F01ED7C1AD5D8B4D72BE0E12969AFEA90FEF170603CDB91CB243173 -B19A56084D10293B80A35275F41BF78A054DDC98F4A1FFF592463D944960FB31 -6BE5F03960F9B1F213CBCC7FD448657FE388F10104D42B0715FC9571CC60CF23 -C72560CBB8835A0CA208FE06676B3B48B093CB7FB2C0C53AF17EC5B372A9771B -BFD52FFB7062B4FE0106A01A2A1A1DD4EF5C8C7623EC9324A2CB3B402FCC1FCE -52BFC8662F8A39D5F1B41C97E7CE34E16AC28A1E94007AEA7D4C519399F1B7A9 -48FA7DDB671067244F09C29F95DD60668223F45BBDA8B1C452E930A9F3F341C5 -351D59EA87462FFB30277D3B24E2104D4AAB873BB2B16DA5B23BEE25BE2C8128 -C4CF2F4F438A4E520CD864F3EAFB5363753B82978F6FD664A14E5D6F3A929348 -5839EA752FD635619C4FABF1E1454510BD9D6B538A343BE748AE05B47F917367 -1BA5EDB15F1BDBE806E51B294257D7087334165419A6520462D794D670A1D6E1 -3BB03BF689391D056D55AD660D15A386E6D222C9572BDC4DC8A46EEC75124BB5 -F0E8978FD6031A90E4768CCBF62A5ED8C8087FD66D2033011947634878BDC0AB -6501DA7E6D96E227068E993DBB0072F037CA411E43A07E33F7B09F2857AD105C -08EB767A9F9C2C040F3E577B74DD991C4113C44027A60B8183F23B527D74BC89 -CAFD464A929C40B5EE63D0B69B5DD928C52D0F9839232AD4E51591D15C32E331 -78CD45AE926E05C5FF0375F97B4329729976E213EAC877D8B00F85E3D589C589 -24507F435755EF67755684CDD0C0AE8771E554CD0EDEE97B77131D02CA1DF7C1 -C7F448DCB5DC4BF378B0317D21F512226770B611A3EAB0AC35738266CD03C04B -8113AC9706A39870A7371832E9955BBBB13FD47584CDD636744376E20A2A72FA -A1B554624DE8DDFE51ABFE1BBAD17BD357DB08B177AD0B33D864AC4CC04D7F7B -50BF3A26CA770502D639D64FE5A198EE3D217BAD1CEAF6195AEF54362334DEC0 -6E27B0AA124D5BD99A2FF168FA3685EFA9BF5809EC76F44FA3BC2C969F7ECE87 -C71A3EFC3256C2DAD0BC78570578B95A44797C965E963285122149283A77E3C8 -D4C553D1443D094DFCE9E9C9509F2F6CA8A58C5D63471A47901FC8E1562B9C11 -4670E53FF45F4DFAA6E3A27B4F955BD43784C5BB356A6FAB3CD049B9FE5275F8 -F930F83FC21579E61E7F20F05364B72371E1112287FA5C28917C5F98A48AD51A -87708812DD609A92FDB764D710DAB450724C84A28513973509C9E4CD3CD50A64 -F0CD0DB6A9FA459A178E7BF67D46A21B8EEFEB19FEBEB453D490EFE90094C294 -98A246B27618A049FAA90DD355DCB1AA6B602EB1BE472125791CA0E04AABCAAB -1BAFE92760A10CD9D0B501E55D3B2AAA76CFC374313C4BB5C765C9CEF1E7E5E8 -081D45C223E1DA398F77615C3A44CB0391C505A070B9061C875929874E32EB44 -0D9692148DF4A77CFBE77F7D5D70B239DD2A5E681097ED9742663A914EADB605 -8B1C0033F1B30C06605AD37A826DE7848D3B59779BB998C3E57DD2AE80B7BDB2 -B2367579E253A2674548F1B717A0CD84E5CA6ABE166CE2F1243A4D22AF519E6C -1C087AC5F81236BEDF794064D7F1B7A04EAFF6C628F7EEA7943B9F497E172E28 -49F8D3B3E41EFE2B0BFE65E72643F14A1853605D516E3BF7FC59C13B1134B9FA -7D9CEBC9608A66886D03F4F5C35E7241D9EF4086250CB5C00F7D94C0B6C7B639 -A9C198FCC41D6EFD89ED68CD447EEF62F196A4FD7A7C124557C370A5CCF9E926 -592FAD165DC03F37FEA13EDE22B64694BFC42B733D8E0BD9EA4976DEF3099048 -CD0FF471F72F1BA8D67FFAB61B4FDC8834CC475713A3D144873808B51AD266CF -BA55B8205BB40FD8A3FF28738A9990197D17B753A57B8FC24899500128A205F9 -5C8E0B63891C638B3F3E3BEC0FACBE02FD08EE9A9489CBB002E8BC0A1DE01FD0 -10A77C7FB9ECD009B61389841ED59543C10ACA8EC123F4B96F8B6E22BBE3ACAD -8EDC13394A1C10D8C6971C37E9ADB3B5CAE2A78D9E299FF17871EFD0BD483F02 -AC96C84F5499DED22B14F13A57BBE20510BE25F17F51F299429CFAB7514FB5A4 -F4173691B1CC7775F9FDAD392B0D84AC6DBDFAB9BDEFF67C56DCC3B02D954661 -A07D765C4A4EE98F58B13D28F3DAD22A896BEB1779B0274433EB5E2E906F9522 -96E74A9D5867CDB4B4858A80DD69532A44B0BB512330D003B188FD6B6F724263 -F011390DF160D0FA044A6F0828DDBCE0E2A7E956D7E09C6546601532F053D5F2 -62069615E3F6683D2B4F0A803E1E66D499DF3819CA3B83C469A0468D5CFD228A -70065B2B272421C0CE5BAB7671D69B4A92AAA802AA863E632EB44D2CED233A33 -3A09DAB712788E450B67D7139AD9BC3FDF80624D9B8DAEA438C0E6B5AA07684A -D11C1452F17F5E042C8A48BC13095FC3C078E9986693D1D9929C337B8161ADC9 -258CA267C9FBB136B09C6B84879D47EBBD5D6DBAC674E659FA3AA359CE69DEF6 -3D6D038E785D1C8A284162CD416880DD5F573D563316E5DB788037B683A26CD8 -C60B75E1A1138EDCD9AA998252110177F2A1CFBF4FCC0EF7AAEF02ADDFA74628 -AF11E50A8A851174B6DE8AFD381EB48B28003EC913183B0B7EB0016C84994266 -26448FAE7FF37B6EE7604113A4FEFCF421E6A4E0F98B7180A64E9946CFF2B4CD -A92B51C8803FFEB3B3C000DAD409715021BE9414CEBF0987F3B4456E7C27EBE2 -A3D8D250142DDB02A4FF49D9D8A67FFABC57361D619BF8B80BBECAAB9B576FBA -A580FEB7FC6F9FD556341025EF51EBAF765A626FE93B988F0C33CB1B37873C7B -63E9E855D07396B8BD361F4BE0E627459FDEC7B91472D22B574F546E41674D63 -62DF6225371C9DAD0A9129DCEDC89A81489708F14B6DFD79AC00A0DB7AA7D93F -EC5BFBDC17D06D599488ACF137AC92C55FF3DE619E6CCA4FF633919E59EE1FE3 -3D153E6B8B8C1CBB3135E0025C4BB8A3CDEA44B5FF7071319DFB0112982793D9 -860A2FC92638B7C30A944685687F8DC719B0048B375F801678D9C936CD3C083E -F5579977D7CC4267486DE97656FCAC59CD82B4DE3032445A30C8B6C8160C6016 -080AA9D647BC6649714A2282DCDD5FAFEF61EC3E7D96D8652FADEDE39BF2EBED -41DED35B9C2E3C76B4317BFE5262DFB14BB625BBFCB103EF0F67B4559E0222DF -CDC260F22208EF73515592B6D397E5C286C831676DEEFA29A8131072553F238E -5E17A0E3A080AF0968362F54F5EC1990E5A3312CD4E8FE5470192642273040B7 -9B94E435DD6A0DFC69947DE35ECCE13E14E64D879E84801DBD65F0C123A3F0B5 -CFBFB6ABEFF14F860B9595ABC25FAAF7AA20588172E46F52E77D4010036AB4F7 -9F0294FEF7E66766DA9270C27FA2B159E823758A57614489C5C5D711D4F3B019 -1DF3D1C065E7592E8D342C82C740C384648CEE7DE0699516BDD298A486119E2C -A567F5F81F76A8160996D5BD57A65557A682B77BA241B24348124C0B7BECB5A7 -60D6EA2A861C99F5F617B250C0FC760B1D81037A786166A75BF2408CFA77DE01 -152BEB50921B3624517F8023CB111527CE517C6104593F8F1C0DE3C4E6AB4E47 -E7419AF7553C784A6DCA3A4DE233245AF0F9CC749F9A7D81E19784E9677D6946 -E2D1F2A7C407C9420225A87D9E94AC52A275D8A19AF807FBBA36FE78E9C11E66 -D46602FE2D7F0E63D1E21D099B590F5EDFEEA0935C9C8056E02D57F510E71302 -F3E0F93DEAF28B3EBCF46D097F5F065B28B506392E17008C9FD21DC8654EB024 -1E5376C2427DEDD6C7369878B9DCCD04F35D594F3CE144DAD63FFB6E2AD71260 -EAB7F19290B2B8883B0E97D8A8B3D0D6E9B99503D8853223CABA8FA1AE289B8F -C0164CDC832069D7AAA6DBA23B9520ACB4EFD0145F317DED15D9B317646A9619 -F4EF45F2389448C1A7F75BCE53865D813C97D949C9D94F225C998A1403CE718C -A3C63CE6187801D3203CF4EA7F43440E2D620DFD3C1F7452CD9EC856188C5CBA -FEC2D90A2DE296D850142DBE6D50D5D43C7AA4F6207B4E5A32CD0A197DF729C1 -0388636EBA410A9982F9C16B966498BE61FA25DB0A44A4C24095A4D0E92305FB -84AC47D49C99209AAE281EA88E80D234EE1CB834771F32DBC1C1898F86802F7D -D86B6ED5588E8029809DBDF8A9E5139CD8ABDC9BE14F073755D40E21E1BBCC68 -9DDADEEA9F2E95480DA9F0BE40F82BC18849C84216612D8E42185061429A1908 -A8BBF1CEA0B66070C4EBDA360AD5BCDD4E636396A2F92A6012BDEA37A7765F8B -7654509788847E0ADE8EC67F87A40037F196BED1520691B9DF0D35EBF99D45FF -B3669D2817ED8781145C79979FACCBF5DA3210C478ED890C6E404C2C9D48BE5F -8AAB63094C7ACFC5ED7A4A56983A23C3A617BE52C0EBC20F3715D00ADA200ECB -13A5C9762670E3A04A605BC830F9A8DB0D21BC4ECDA28ABBA03824B98F4A61B7 -319FB56C9936E2AB79C954EB1A36AC8798FA450DEB871FAC1170CCCD80BA8B4A -AB3A33032A4E2FC0E938F660FBE49F31136A1DF5C9ACD2C381B4D1031B4F3082 -665159691064175B7E6F71DE674B3ABB20B3370EA41AAA3ACF6819FE0FC3F1AC -DDAB954382FD7F43F06E0E1B92B003CD788D69379221A9B380D1588A4CADCE1F -723BE855FFFB74D969AEB11D48A9398052F2A15BA781E3175B6F1FE7791D925C -C10C68B337E9C7DDD9D4358FA611D03AA4F807031B4CEC86A9C0C4CA284D5387 -8682928015EEBCED896D1C427F498995D7B27250D266E901C875B7B523950E58 -E5D97AB87AAE3498495B5ABA07E5A708645F11EBD3F31CA38457E50BD146B951 -08AE0FB57C3EAD7B6571BC0686033D63A4360F37B4D752A25388BD0256ACA0EE -7B1229DD26AAACF861608FC6CA4AA7F1E5DED8EC122960514BB35B2169BD011B -9C52F4AED9FA67BFDFC2D7ECB350C1F2A21FB781A2BE4A9BE7C53728D6FC08AC -10F48C85F84C2D4B5B2BD8113E8816728262E4685362C405EC1334F6CCCBB0B8 -0008507E7B1680C58B142635D618032D967AF2925C52613F6DEA30C5F5CF9936 -7D51B1AD9A1BB6B958BCAECBD9BAB27A10D4A613EF2FB57555151977317EBA55 -9C0B26A79FC44C7DEE4020A762EB209E6B8ECA0FD458D46693F8D5B0A4B74B4D -7D9FE5330CDB909C755B08F8243AF107E45D20924728554B6DEA593ECDEB16FE -BDAF464D62B55DCED88C9F1DF29A9DEC86AD386D3414E036E5DFD2F6CD76386C -02FDD49F240A3A4EF42EA5BB3E6DE40C52F0C5A1D988848747E855D1EF8A625B -B5208CE190BC2AC908A067BC5FB8412AFD565D68DEAD27B620B47BEBE992A65D -411159D8C62B8FE2879CBD189095062A721810ED10D619AD4411AE1B4AA10F22 -D59F561FB19B820375427E88F49CB3487A8E695729EA18A056B7FD3664697A17 -637BAF4DE04F4ADFDB90D3B8FB880638275D997A819A98798F64E2F627783962 -0F26680B80FCA21063C1A05AA68412C285F14DF2EE53D8B7751280363B727C63 -A6ACC9ECF95A749CF31ACB68423864C43CD3A668F15E6ACAACDCA21762669727 -F32D64DA686917B8B458F475600C96B9489C90E2EA0F123DA95680D43A4C7627 -E5C8CBD62EBB6AF8CF16940A2C95DF6F145FA4A506B9DE3E61B47F9E69CF9A56 -CE97940687237D672B1C6850C4FA6EF764E65CA7FA61A7C4742F7CB085370941 -82583305F2E640C5C1EBBB180B51EA12511027FDB10D895FBC33324481DF19CA -5461012802F49939FB01FB584979B10B7EE964A08F2FB54E1A7402BE6794AE65 -B2DDE265539D4719AD2EA84F7EE7CAF39CB44FF60992B78B6A2A8ABE3FA4BE5E -5483DF4E6147EEC2A0E6D7E30FFF280B871287897CDA27472891DD56903B9EEB -02502C7FB67BD7493276F59001E898B238FE68E8F006E737486384E3C0734529 -A89466BECBB8987A9629FF017D5B3ECBC73B725F1BF980328376F7F984A34ACC -D2138B9A7B05D501075D5965EEF2723A13ADF9D0A1BDE62C2E05DF9040B860E7 -57B8866DDA027E5631732290C8314A798B14AA00460168F5FD21E5BF0359B8EB -98A13D8C31869262B48FE7867E40D11C8AEF00D5BC3A3319F6E8F4C1305595B5 -4DCD9EEAB4B7E9246ADAD681892F3F90685FCE979E1B70E007EF18D258C04371 -3656ED8D71FFA463F13C6F7D397A67A65BF61EB149F65950DAFEE88E1560C0C0 -6A76B74A2C0F5EB83898FA9E9BFB30C29F98626470FF4DA7D9692D5946316A63 -D4B5F7DAE73B996666EE0CDDF24A6B5661B1AF3520D8CAD0BD6F199440E08ED4 -143CC87BA9EC046F6EC2200F8D0897A5FED31A20BE642AA4032D67E3D2593273 -E376396C63863071C3BE09C86AB6E95D0422A8BE2F83080FFF9235BA42EB6BC1 -2AF7317860D5AD37836EF4FC3A479C7DC6219AF5236C84B01C84F068B94FC917 -9F472B55AE01C3FCF2A185408C68A47A58C61745CFC427C4586F8C4C5029DA0B -6E527B7FF54828E2AB0ACFC05F68CB5056DE56A8E07F1393F472250CD7B2D53F -3BA28DD9B00E6940A73C11A3733FC4BA6F047B974064E732764301EEA31992E5 -48AF617E9CDD85622EB62C232DA13171C5688FB8B4C15387E112430B966D70D4 -905029D705D383FFA623AEEC5E6D4B1FCAB71AAE687D41A76774AA0EFD5CB3B6 -20730281CEB8A6C14D91FF268275F51518BF58215A58226E1D537BAAADF99E70 -0DDC23675069ED0712A441253D0502647BE3976DFA175788125CE7133A5CAB96 -D01668CDD304B0E407F3B406F4AF1137019D0414CF21E6C6145DB1716FE6D142 -0009958D48C9BAEC214D265EBC47E31EB5799E368A07989036D554FE045E2487 -BA7383B0F5A55463BC6F93C12AA547348D5B5996AEEE72B78E9B41B11C383DAA -9BD505B276BF1975AAAF800923EA094E2D71470EA66A64817A213C00F479649B -2EE4E6C04D316012F382D1C58DE9528EC20D48931ECF5C67AA129FE99AAD3735 -27165D08800D6DA13507B4E23B166E8CC86FD6A798BE558513BADCD59E9AEF6A -4D90A3A240EB865871E6283EB89146A755D99280DE261C24103801577F97A7CE -116E11A76450FE442B10483C24C71F8EC626E80EEC2563994CBE6E2ABBC5AD7C -646D4EDE35E012D77431D1E1C74949654C214E7F42ADF09FF6AF023427A73763 -25BE546EFFF1255BC9384033C8E929811F3E5B74C195E76E05ABE877B3342209 -C53C57F84B61B0333F1D879D81512C144E5D9E4C44C7F73A4127EE89060640CD -F00F2F90585239D410279A0CA9B0416283CA914C4CFECB88EFF11F9421874FC9 -CF5B18EECF81311B4FB7AD8B8D0896149AE5905AD03245F4283497DC4238B47F -E1CAA9BD5E54AF6411A09786DCD9180A9BD72AD71111E15D1A4E780AAEBAC100 -3D5AD925DDC66F895DF0A06192366578517F40615F43D4D392A44FE49729779D -D2D5EE8C8E4956C87B0839362DC6DBBBD8BCAB0752E83AB3FBD822D91FAFF626 -50191779679CD868824D5D9AA7F0806807291EADB1EE2C3E5B13451EBC7C177A -13B724A1D949DB91D59F721440FACCB2B5853F8FCB26563979AFE7794EC9DBDF -ABB7D079598512952C95F676A83239A42BDC4BCC383849F9F1EA1CAD42A90F88 -57AB82EB636C0B83696F210E15CA531EF55DB48E3AF3BD5BCEE0A99544DDC2AF -F32622287FC2AA1640C28A45FE089BBA80D2BBC9806E710B39C70B5434FAA785 -3F9D0ED0F5150535EEB99B550C0A723A1E48E72A942BA1F18CE822ABAD09F471 -4E7D255CAE74142C1C0898FF0BE5B7D6CBFF4EA5E2CE02EEB8A621A23A65FF1A -F569049E2FAE1960E8BC49C7EC6E28BFC4AF22A1C4538BB7A42131546E584DFA -7AC3B37C602BAA35ECB977991F613253815C3205B0558A65E110A962736AEF5D -DBACDFB37D69DE2DCC22FBAE23B8CE4C549FC98C10B5473404D5C10A178D8501 -BFBF7D4A7C706D3F194F0CF2EEE262095EDE26F660D6A65E6398AB3EC5CA4BDA -3E174A0114DCBCA6A5767B18E50EC8B1AD197277A1C8671272F2875FAA8E0CD9 -D8B58ED78766221FE5FC1C39DB7F803DC6A3154B3BCB99E97068937A6124357A -9ED72F2C36C71B9121A07733E5A971D8A9711E54508209AD10469D9FD6C0D1CC -97B76ECD096A9F0129279E1D9E5A7073CAC878B70A2D3C701B4F6D739545BBD4 -7DB4D8048A8389B13B4BE880E54FDA294AD9B69728E6D4F794E2B08CAFEB2E05 -CFF5217A76AB1E14586A28B4BE3A0A647DA4C3478E97A23AC12B7DD368066676 -14AEEE971E40A85BED83E7DC252E8566EB31BC911E412ECA9D19103CDA8183D6 -5A1331AD51F2896BFC55A4109385A8A048FE7B28FA9C5737D5CADEEA49120B42 -3AF12BADAF96B2C7B9DA0BAB63CAC1DF6FACA4D5536EC2E6B7BDEF72A2E4FB66 -961D4D6C87DDA9E37F0368245A7D9A79C4D7839BAB28D72E7231410D80059ECD -155AECBBF2C6053E9424CA018DB652FABE8A259DABCC556625ECC2EB0E661011 -9B6D500DAA1FD96447A2C94ABD37FD3C2FD136BCD8C2FB1442DADD2B53ED2691 -05605FE149E6BDE13E65C61DD73F60884B2CAB7708B67C58CD9530F6DB72B203 -85F0A3A54AF9E4DFB8561998D474127C8B4C480925B8FDA46AD3B460FB9288EC -15683B06E33DFD17B4E5036BBA272CEF7B9A3AA2337EEAE07E5362D6E3DA5570 -4A095B050D52A6C7828E6179781796F6A312881A45C10FE61213DC4D31FE9112 -695F844F4FFA4CE6FFB11D301D40BEBBF9763DD93C3498CDEA8FBB323CCE7B67 -A7BCD6CAD354D6BC870B19CE8346C2B2056693B8DC48CC516C64D2F5C2DB8024 -2FCF14263C49FECEB122079014E1CF5930E0737A9A4047410BAEE6FA1A09403D -6F2A0571659BE21088C6C25F36FF3898FD7002959402522E3692E59E89DBF5CE -9455C3D11D1D865A38AEDFD7D59C8472854B6659BC4CA74D142AC771012EAF42 -59834B5733DE5F7FD91561A99D15EDCFD2B210D91BD266FCCC6AFEBAF6E7DD24 -39B4E375A7FE5104073A9149DB2924E81E4ABFE41E69343DBDFA343CB63D704C -19C4F5C3C0BD8D01B1E2EFBB683FACD1A31FF596E1236DB07D571A9B80C1625B -55A086420178034E371E58768D47DFE37607DABA77FA9C478EB37B4C1AEF63C8 -53D74B82BB203DEDEE409834F2DF642CE0953AB0085EB15F79405AC288F305A1 -00034BFB8A201E60AF386ED0317202D2ED39C750F6D5602A5B5402274706FA03 -CCD598091A25FC90163E5B4EA798703F98B21C5F2525443E3ECD306D3D67FC6E -1FED63B59DEFAF45A8DD17009AF9A4264F1EE7AEE59A04EB13A7A14CE7A1BACA -35441C393B1FB6847516F977A137970BFC4ED081B4A96F7287F68B3D3D1DB704 -AB5F5D818548E1F49560776863A84D91938D8D1C7B3FD14D95EED4AB89F689FB -387733A4175094C396A5F7540599D3D3FE934982011B5082ED7FCF061BDC1C4A -C3A426541DEC653F0E1AB82A6B9663E4B9B6CF3A3646454CF88F26CEEF19C6AA -00B735A1562D36F8559C4C27D87F0C780C6E627BABC455AA7A2E38B270BDC791 -A4560EF6B814AD5B2D3D1C1B16C597B93877457EF9956BEB125644658FB30662 -8CC9236D86BA636643B1DEEFE3C696D2DABB7ED5688B56E1C99ADADB05F99868 -5C3E1FEA735EA4B3AB110FE00C3F080A69700175C892310A2CA1FDAEA838B8D9 -0E906FE38F27CB27E4B451AB0A9AEB68078B42344C7DC47818887C93B465DAA7 -C3FEF4C746B52F8AA5B5006A8B0E262D0EC05E5B22027CFFE53C96EB8A7208BB -768316DDB12474B7D9186CB67EA40B9C059EBB6CC1525E86E50259F82C5146B8 -53A9E15FE0516CF3EB44B745C105548ED1DEF13B55B4A41ED5EAC4DF3BAFED0C -C9D38984E8CCA223772CE195679C8E9F5A4773DFFB8392F2E32D44A9DC6C83D4 -405C56C14F77B9A693A1C815264AB52BBE0410CAED811F035DBBAC7AC81902F8 -7F74C38CC1F636799E7B7C2A2E0D31F63D13D86C094184A85F3A5166D2762967 -C3409C01D68B9F0E4DB9109F3D83DF452AE4781DA7F20AA6EF831ADA00346666 -3CB7151ADEADCB9A601E5BD2FC4C5B89C058A5D0DB1E793C1390BD9EE77EF7E4 -4B3F2F129D2090494758836C37623F1F7C8CFBA716515FBFE20EDB15E3A7C304 -62236A0AF4E0A1B64F523D5A60E41ADF7C64A08D472EB385E949DCACC048E74A -3793AF4A2B3DD6FA69C95AC5B99267D982F7C9DE68BD4FB12DA36130321080CE -349A0374FEA9BBFF6C8B8EF5A9F5DBBC27AD4C5E9532BA3B014AFB8DB5CD5F73 -1609AE62635E103ECA3CDD33A2BA7489179F540F84DDF5A551BCCCFA991374FB -08B1CC61600B4E2EAA674A081E5D4BEA00423B9958B7BF78373FC42EBB9C5503 -D831ABFE2BA3273E9AF8808203A57D6A85D43B70A3E75E3661A1A590510568BC -D492E16C5AD8B5465460CC88136721FC78A5D9ABBD4B09BB244CA5735E21E603 -15DA396C26579FEC38664C53BFB82127E67EE3A9535EB872E028EC752395A452 -23B76523DD01D40CFA7F0F2D83C686E8A1E736088190242265A98A96A344168F -47B11A1856D7060066C62418E46E7B1AD08AFB814903F4389F923A0EEF2F0EE6 -F87039B6428E475EAE7E0205B52833BA6C475E3AFB30A4C427F61DE9206FD463 -6D0EBF19C889943901D9F85E25B04FAB888BFAF1B62A05F7B2DC6B2E3E0E8AA5 -64C8A5B2D6C836AA48C41F7ECA82FCE854C649B9E517FF416333B904A3D057B8 -A709E21BD0B4AC6CD40A52878765FD27135AE413A7CAD83F53448F31FE7DEF9E -BF12A42E6F644602BCC57AD4A3D14D59555AA77159BBDE2460524436C0D29DFA -EB826EF9A2EF9494E168F07A9A31D7B41C121ED1BEAF83794F4C2465A16AC9DC -82E512E0AD888DD1C7A79C125676133080958D8DBF18240DE3D178B0E38B9CAF -8441F4F647ADDE776959B3C0245A203DD12823351B7610B2185A918A46C934E7 -3EE42D3072783CC06104FBD2E3593B96BAB19A0C487C74E20A5A402A0682E905 -780CFBBF0595D352108462882D97675DE50C198B39AE710A1D0C5F8A6BAA4270 -D59C8BEC72BE5F9388EF5CAC430678411EDD4C898E554720182AA7EAADE98776 -7F24FE7D6C7336F6268BB11CB9D7E618FCD3B6ED88062AA47189A97A871DA1FE -2A094C7628F2F66252C3C6C527B3F7D0C85BC70CC6EBEB6C4778E288B9520942 -1D9234C8CD1EDC5819DF14E18DF8CBF5A67087C508EA8F557943C0DF568B10D5 -102EF4CB1E39BD48FA9BF59A6E73D9B9FF4AEE56BAF7E92ABE1750620D040066 -60C8A8850670FAE63206E7D47859C4FFBEBE50B8F35B59122EC66282FBA0E988 -0B9EA0BD76DA9A08B87DBC99BFCB5BF7A8C3748CDB90C8113DFC9EFE5D012B85 -AFC31778F604F2E6FF75AF7210236BF8B37C6DD907E69B632659800CF8DFF365 -7B6B50F69E759739D5D7A5BC3B3755011A37F49E87307E8930541665EBD4D832 -593EBC69993F2360EDF0D15F716684A122E3A91E2360AC91C69ECCB4504E05D4 -90A5CD814C0C91AB257908A73D4FF166CF3BB4AB5A49BA43AE7B841B2F11604F -B7BFB092F9F2905B5FA3A63071BB5C067B76E0FAA460BE7C7120C7178A39F175 -1CB520F828B4432DF331B9926A19E34FE8C9D3733A991D0CCBD44E37BDBDD68A -3933FD1E1C3550FA3BF091268A2D79694F0CF648CBCE2FB9786CB8862C39CD29 -BF9863DDF689F11C81A8C15F56E5EA6AB807941A8B62AD9F0B1D53B972EBF407 -7F189ED8FFA909C63B5ED68F5FDE80ABD9B3B2A220FA19E4B2B6F754BE6F7FD7 -FC87472C631D73B5A037C594550DA4965DF18C13237FD97AFCBB1936E9186669 -2ABCDE5A0192747066DB1B605562C1D0E2CAFDDCBB1148DB280377714807D4EA -DF41E374C3A90C3EE40C55541AB3F594784CEA5142E0BADBC86E11667CA0D14F -1285406D887BFA2AF299D2CA887E2A9BB1865D705B6611C90C2EAD9BDB229EC7 -20A483A7689547E7E2B82572CB0D9249CD049C0121807D54CF4CA12D91DD2A5D -AC79AFB6662432794475CD0C868CE5094B6F1F733AC7641847969D9E3607D716 -4EC89532E0FF1BCAD4B90315E5EC686DE83C71CC4E6DB1A3EF5D817D88C6E43D -3733C594205BEF082D287824D207B3F581DA8FF402BA3BD9894876F4447771A9 -015C897E61AB2C9E6648E202D72330977396AE7419340B8D862F7243E130D81C -C54578EB850EAD0982861EF6CEE14C9B761D0AC8D49D30EF6409A699339D0241 -AEA334F5D303593B29EDFFDCA8B2507E115525AD81FD18BB11829B6620C8C204 -AE00F67565AADFC10827E228BE6AC8A2D496406B286990DE0A016D8B73C72939 -B385CE4D3813FD166C6F5AB1A534E594FB4960B99E6BCCE5D466BDCFDC83371F -2B4469C5FC2A319AFDB7B98DDB078E2720FC96594DCD16848EAD3E7139CB29F0 -3CA5DFA6F6247BD471472829C4A80A966B92A1282A5C787814E9CDC68DB5D14F -A252DD6644F50840EDC5C05B5543C46297D2F624193404A97C5A43EFFBAB96BF -CDB08D19B6D2F2617EA2459E86B7CE5F8C41E5301FA12268AE44CCC0D731CE7F -B3F9533244221CE05C640A2803E67E20FD163E9F6AAE55D1AE28254464EDDE6F -DF64433C6717E06D7A3A55EA53EC08FE36817BB2695DCAAA4A70CE915F2AA103 -F5658F2112D7D79687244C054B4E57B3312B58C31CBBAF9A900E507D6BF88E59 -C8BF0715D0AA16DFD1B670C999159CCEF37A39C25FBC8D4D5280C6ECD9B6CD1F -501A87BC912A398D7959460F8470677A36170BFDAD24E5A80B59D03A9AFDFD77 -D29D471C368848490486B6D07467C525F47C59C548EBBA09AD530C87494C0C36 -0B266818D4BAA382434014B5AAD24985AD5488C5B20216A4BFD5DD3ABCF68442 -2A34CE42B2AA9B2FFCB2C69669F471B5559AC3B1E315CCF9BD8D1D596C606372 -C60AAF7407900CE28F49611C7837C442FB0A45D116CC393771B603584E416ED5 -6AFAA3A1CF5AB1B3E4C8844F87EF1F8B3C00493E44778F319B73775DC49908D7 -FB064B6937D139D056321407A61ADB0FA3DE34BA0EA64A8FFFA5DD00B4198AC5 -DA6BF912D0A61DB73849E60C08009F61135596C659EF2952730378C6953B270B -1B30ED14094F3425EC537E034AEA44A35880F606D9494A4F167CF1D68E021195 -EA95BFF9B1204308EC6023508D5795BCBCA9D0B5B4713B0F0EA3742FBCE6EF5B -5543520C2E546D4AACE6772CA093960B45B6502A14C6A5207C2E7F42174AEE2F -50665F4DD1D84A33A327E8BE643DF277F2C217918F70DC9968F2502674F5C9F1 -54BD713CDF1B40E62E36C1C9719620F45DDF8186DAFDCB6B6C5AB8CB4C16CAC8 -DCBE6D2C08D2CAECE8559E6AFC76815ECB8087092D9EB0E93D31928B53373BBE -18B838A8738723333075B9C6F314FF6269C9EC139A89509EC0B5BA1FD1821995 -03A20682277AD86350BA5E0A4A059C718E5D77233198BE6BDD319DA1B92AA22B -E2770EA17130E581BF8C6D474F8C75BDFE5116D742489307875E568474C63723 -81F4C22BA1B0B84C64BA2FA9575D08B023CF358F4952A8AB38916BA1E0EE5BB0 -FD8BFDD642176954639B040EA3F1F388C0CAAD454765C180A677DE7061634A04 -5A58617F0D68293EE2679B92AD7ADDB8E4F491D8A04F12FA6D4927F8D32FCDC4 -8DAFB672765D599B376E9146A0869476464FF3ED541A90A13C7CB9DEC36AF11A -593175CDC284E2D9495BE7BEB76BE21708444E2ABD1222D84A33BF568B447D13 -CCE55269EED0F07FFF2D8DB08CE1D4777C020AD6E4601BA5860438CA09677848 -186B8C9BD6C8291019CE7188A41D34F4CF3F0B72D614D067EED5AFBD7BE91816 -9D0C20BE8F48AAA5E3A02473FA1255CA761728C03EFC7680FB92F32CDD4A10EC -E76EB6B28EAE51D66F09568FB49B83A3D8295467724CB774D4D2C4E2D619A272 -D03A627401B1FF8DF700BF778AA905436D421AE00819A63530BB3A399E6A84EF -0501B8D73C00803038AC2B1651BFF58E00D72C32F3701BA82330DF0421A6629F -B45B45B3D2461D4AA96AC0F36CCB75348391AFAF4ED915F61D1584A9B9E11535 -44DA51552AE9B480778A160F8192B848EE6F3A36A85B7BC80AD00C645C3254E1 -CE76B479075A354E2A4D199B9B97945B92FF18E55A192287636169F50FF639E2 -48DFF08BDE9DDA8F372024A3B7C8106A1ECC51F38A15017B1E5F7ED5C35C07E6 -22BA85112078F1A368461BAA9EF8C5BE2B407DA6BFAFF6D924104147FFAABFC1 -8FA5F453895F8EBF8CF65A164060610D827CD38D8DE85CE87DF6757FA6749C66 -2FBD3AA116E0A1EBA518B8871A458495AE39E2AA76C2D4BA9DDDF3FA61EAA369 -F2DB42293A293F995D3A01DB2DCADD6E26E5204B7505A9EDE112E2106C26B7D9 -393B4EE72663D646364E067822A2D8DE21E65C15CD3FE31C43EA36C2FE266C0F -CB54E78877B1714CE3C6099EE0304A47169D8A889908095DE2F3AD4B4D0B388F -A2FFD1DE6A065C5F82218373089D354CE0B112A541095F34EBCA188134DF8325 -765FA79E96DBFEAA52540D3C6ADA67ED093D3C84F44FA5150614DBC52A74E206 -4CA0030D532C04A3843F09CAC23B3C5CC0B085680E5711070C59868FCEACE38F -69EC85F4C74564F9FC173CB7CF5C3D60A69265B18D7B61F66FA44C23409C3FA7 -5A8C0AA3230BD59B27899D753CFB4BABDBB6BCC783C036BFF69359B05F87B1DE -D43B3F5A87BF9F79D83EE164DAAF5C472B74FAE110C9F70D522BA90F9097FCC3 -7154AAF9225DA29643B114C0E4D824B82EE6E44D88088AF8DF3BC24B78F142FF -8AE31FFFCC59225FF090409AA89B96EBD32A1B7F3E59BBAA4969A35824F1F122 -C28A07A67EA7F5109DF80873F886A34D1DA3DAC6739196C458E1AAD246E28C95 -5BAEEAFBB03E1C2C2C5B1E5BC25C7A637111CB8EF5598870AB73B87139CC0373 -2C7CA4E216506C08CF37F57F025BF947C96A2C485EE596A0E8C1CCB1AADD96B6 -A0D5960DA538B28B825A0E424E77AB2B602DB15C8FA9715FA3D51D20CACF6AB8 -84502EA510FA5A8D64B746C67E91419984D27DB79026AFB9D151175B682F10B3 -70C63E3CE4EE60C30D1E4E21735C3680B9D797E427F88075CF1753663B51D96F -D75D738906F8CDC4C52C626E389BFC0E88F5154AB4BAFC8A35E944DA02358C7B -E3E9DD1DEFC49FCC8701BB849E1E61E46FE0F3408AA7E2A92CF5E44559DA7859 -2FCC4434E4F2A1BE4760434BF95A2B0ACBF29B290FDBA1BF168D2B1017C5B9B5 -D04FEB32D337CADF33C3554403EC5500B8FC7A0CF257971C18C7BFCEFDC6664A -0378B8924270ACB476F0CCF2D611667AF3B5746A346924A01B53EA62F17535B8 -2F31791C34DB10076B461FEE419F3DF6363EF6B6F21B36B60B2430A8120546D9 -DA256D859EF3BBBB417919334BAF9296893A920DE15A1EEA873966B2DC71BE89 -08D8B194EC8DE09214CC521B8E1258143B43016D0E228A1BE4DA5E64BB5BF45E -9D68C4708447F058242965D945B150E73A8725EAF95AF0F7250F378445793D19 -E7FDCA0A7F9BDD59FFE22DA6A1A6A2278328E2CDE66BE8ACFEF03D5BD28A701F -1717328800B57A752EF90D02F72A210EF7B61ED77D23DB9DC8F73A0A06E4ED44 -D603D0F4A64FA99ECEFE278F7F892F8436F7C58A463E45F1D440C026228958A5 -AE9307CABD3F5939FD37D020658764DE53504DFED0A5E08B199D8B3CE94037C7 -DB3DEF389784D250EEEB13EC65F90A7CD6E8E99E724D0C13A8E20CEB9636AB02 -FFE561AF9227F6DE05A2CBA8B20EBCA6EC8760ABF7ED9556BCCB59BAA76036ED -9B7FDB697A9C2CCA821B590EAFB504EE82F58F30C07CE0A097EFFD5DAC03A2E7 -6050E8C3A5527EB85AE29AC8F4F74561C02B55B683810C9558603638058F2286 -DB1F3372788B2DB1BD435959486C133C3C50EC14A45BC9EAD710B22C15C73E9B -3F86E909B2EFF5310C5E6C8A9F93B0B9071F121252884DD532DB36DD2EB52C93 -7A1FDE104ECF6BA39DA6DAF33D6EFEDDE6007900741E974E4805640F8455466D -50D1FF14BBC7B03F1EC139B179A091746956607C8D097FF1B77A0E4FEACE0EDD -D56261920EF0F150D1F83E6743C3D82B55503DEA7917CB129038411B435DBB76 -CD6AE2682E4DC6D42488E113760517916D5846BBFA9C1B8C316554E43050D86D -4E47BAD85C0C2649BEE99F611E0807EB70FE5D70A587C797A53F4969815D942E -7BDA223588185B7C7C7702C79435BA27B8FAB1569478FAF5718577743FD3E9C8 -1C0B2C2DF185C1F0C422F8283B992C9968C779F77ECC8CD4F2D7E687DB1D2948 -02BBF76C2E1F550FF60FFDB83D1FF6C98B050EE8944E6E72C128AFE756EADA0E -3B8BE0E6BFD1C26CBCA45C9D79BE4B9A49650776D28A0AC0A566FE15D387AAEF -16DAADCA9F7D2736C056C25F80545F59C12CCC4FB9D50874789B196B9C2F51C9 -76EDE6112B7D00EDAF01790306AEACEAB092C24626040EA7055FA31581581BE0 -0C6F28C45ED4D3204DFCE04CB3AC946A985E42E25075BF110D92E0102E39B06A -41228443FC961DA13789DACCFBE69DAEF1739E7F7EEBCD464F63166E13AA3694 -246E76AE4200EB89ACAA3BAC3AB6EB4D821AA9B7960B70122F22A56C406022B9 -4B041E21FE064FA2389BD70F1E1AF99E7943B06C0EC5A997B3CC536D9AC38FD6 -AA14B9DFD4CE7FA3C3871B075B31973D568FE7B7DD4BC930A823E0C814AEFA29 -FF6B1C9710A96A1336DCF7FCD0B1CFD2F20C5F06D233AEAAE11A110F9856F858 -27CC8C23385D8D486301AC324C9832F154A9E0B49C02D0D8C45713E347D87FF1 -FCF8FA13A20510D87980685ADAC8A2B458C6E3904AFFDC8D67201299317A0CE1 -B1DD0E8430AF898C97DC7D9228112649CDE77B90391E22936574F72F831F36B3 -4E73B141EDFC9469CC3E4BD7B57213521B187DD5E293BF9F1F76202CBB4A072E -C8C82D7B10E05405CA358E68A6192002AACD7F7CF9B592B116E89738D13E940F -E29EDFFB3D85E618ED6B665E8F10AFCF991D2C0182CBE434BA532CF8A9924152 -D8A3A9BA45D04F747424BA6F062D81584D3FD4392B341BC66B508C04C50BC6E3 -E291507779E456A6E9378CE2A58AA075519A111E97DF45527975865FC7711E08 -7CDE68C74AEEE367477F087D09FF67BD99C8CEB605D165F0C6FD285BDF4B14EC -183FF6E149E6E3A387B0DF88500DEB1725363A29FE31BBA528650365EEF12B4D -237323FC2FD1359D3DEEE15B9695294F52BCE8827DC6DB80B45BEA25BBFA77E0 -3E408916D238EE9984A72698E639832242A15CF3B2ACD114109D2EFA8ABC9638 -31EEA7AB94A96D612F6055E276E6C2EFFCADA659B388F3746C690F0337159DAD -5E80AF3D0C50617CF5A93877581D40A98493451138377AAC7F9335DC7C3C2373 -473D7CE93FBE582BE591A0C30ADAE4B1714DEEE59C01D69102E382536B92355F -6F20CE87FA4913F758128F74B48605999CCE0C32F86DAFD2D07D75A1D9950C0A -D32E693EFA4BC7C3DE6D3F796B9D805D703239B1D48979B5592CB1FF949F95F6 -93142411389D667FF0716A8E890E7D5D4DAAB8797C190A940806A50051C6A952 -BECA1B01EC677E00A1468EFAB40548FEE96B0E762FE8400E79D5BDAA28FEF9E3 -2B81442635D159D01BCFC08902317FA5E6EEBED4DE0490A026E8F94260EEFAFE -0A1FA3134013B0AACF1FA951218539B357586FE92965634487770AF7B2F0A0A1 -D7735E6D92840EF7E953548339BA6ACE2DAAE5C3A4EB3BF3BD62DD27D18E3819 -46B91268C3D6E04B16AD4958E7AF8929B4889AA94E9F6E48BA769D464BEA9804 -4C318599988B92A8256C1FE552BFCB3EE4512C12BCF2F9138DB1A8633D6AC290 -C9F8340EF54309DC42C2A035ACADE6010868AFD6F389B931D3B1A8CF72A26896 -FD78C5789C219C2D4EF28A91A425D648EBFAA5DB7F6AC12EFC4186C6C71D7F06 -F66621A939032A9CE5D42AF8E45B78DFA211CB3629DB57CCF9FBB5D3792FA8D0 -BD6E520B115B24BA4573F20E145FF4156E3E57A286155269CCC358477A477CC4 -A9DA53A8E9C547CFF68306E78DE02DB06E516E8865D2AEFFC2B7D3D553E9A51C -37D46E515332861E6EF5308FAA3B759DD0EB4857EACCF33DCA20A80C016D1F1C -695F7B7398DE7DEFA76C16CC686A29F35A61DFB244B1389293E9D3106881C303 -D621DABA7DA35E2AE5D0A064FABF1F4CB06CFB161F10BEBACAACF507F8131AD6 -90A5AC1BE85ABDE87A02D841E6C9A99949901A606906EB5E18161D947F1B4340 -3EA721EE08DA268896FD7E823879A1DA28E885CE2E152FA18C1C579011F2CB4B -B75E3CE9FB816E247FBC50089BC9489DCDA99DD4B0158357CDA22DE2399C9DAB -EA044DDA012255701F4417EF637404DD5EE917C0C346D052743822F06FCD7391 -97469EE2E90D31E5C551907B4D0B4AB5E4C505D3255DB9076787C5842264B8BD -594C408188166EF3E6D82DA154DD8FCEC90CE09EE454F109E99F129223000892 -942EC93296A86236BA41A71D4875FB2E208C3C891336354B0A42C89B6FDF5A54 -EA92EEA1AF7F1A276F75C93BE7996E60A4B5F7FDB6FD6E26F3E64500430A9B2A -89C0912886A5A590051408E3D40F06E9069BC0836712D39B276E51ED6897AA93 -BE95ECC177C9B447B9217672D8743233F10B3BC1EBC11DD4B453B9B97CF34B5C -9DE7F43FF666074F604656469F25E458365EDB8EBA89399776584E420317EAE9 -0E3914903CD4D042E5D1B41A3E62E1B20404295D49BA8A8BCBD8E6ED3CBEA90A -320D9C67667E0D6B47FD82FBCE186466AADB6BCABF31123201F1AA52FFD8059E -50423E8EA0E6367434D7A8D897DCA904D35175DDDC33CA87B6CC -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMBX10 -%!PS-AdobeFont-1.1: CMBX10 1.00B -%%CreationDate: 1992 Feb 19 19:54:06 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.00B) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMBX10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -end readonly def -/FontName /CMBX10 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-301 -250 1164 946}readonly def -/UniqueID 5000768 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5F00F963068B8B731A88D7740B0DDAED1B3F82 -7DB9DFB4372D3935C286E39EE7AC9FB6A9B5CE4D2FAE1BC0E55AE02BFC464378 -77B9F65C23E3BAB41EFAE344DDC9AB1B3CCBC0618290D83DC756F9D5BEFECB18 -2DB0E39997F264D408BD076F65A50E7E94C9C88D849AB2E92005CFA316ACCD91 -FF524AAD7262B10351C50EBAD08FB4CD55D2E369F6E836C82C591606E1E5C73F -DE3FA3CAD272C67C6CBF43B66FE4B8677DAFEEA19288428D07FEB1F4001BAA68 -7AAD6DDBE432714E799CFA49D8A1A128F32E8B280524BC8041F1E64ECE4053C4 -9F0AEC699A75B827002E9F95826DB3F643338F858011008E338A899020962176 -CF66A62E3AEF046D91C88C87DEB03CE6CCDF4FB651990F0E86D17409F121773D -6877DF0085DFB269A3C07AA6660419BD0F0EF3C53DA2318BA1860AB34E28BAC6 -E82DDB1C43E5203AC9DF9277098F2E42C0F7BD03C6D90B629DE97730245B8E8E -8903B9225098079C55A37E4E59AE2A9E36B6349FA2C09BB1F5F4433E4EEFC75E -3F9830EB085E7E6FBE2666AC5A398C2DF228062ACF9FCA5656390A15837C4A99 -EC3740D873CFEF2E248B44CA134693A782594DD0692B4DBF1F16C4CDECA692C4 -0E44FDBEF704101118BC53575BF22731E7F7717934AD715AC33B5D3679B784C9 -4046E6CD3C0AD80ED1F65626B14E33CFDA6EB2825DC444FA6209615BC08173FF -1805BDFCCA4B11F50D6BD483FD8639F9E8D0245B463D65A0F12C26C8A8EE2910 -757696C3F13144D8EA5649816AAD61A949C3A723ABB585990593F20A35CD6B7E -0FA0AD8551CEE41F61924DC36A464A10A1B14C33FAFB04862E30C66C1BC55665 -6D07D93B8C0D596E109EE2B1AAB479F7FAA35279ADB468A624BE26D527BFF5ED -E067598E1B8B781EB59569E3D0D54D8EFAE0F3EDE26279776ABA15341E42E636 -6E02817082BE6FE0B04249A4840C11F95F8ADEFF72173E9A5F2AB2F62C427E5B -DC010E18641EAC906A5EF0F9BC2108062134A7F10956219C5847C0D82F0E8663 -12D963E012DF0DD899911EC5D8096F80B49CA3444CF1294FBFAB57DFACC9D01C -46F3BA2F3D1C14EC30CBF83E5729F1C074D4F1665405CF54722827FBC24AEF08 -F6DD0BC6A79A2DB1FF539454E8F5D1A42D40CCFBC093AFD3E57973A009095CEA -B91FAFD236C47F453B38DB0067907A28EB5E9ADE87A2181F1D6DE4E183631716 -C21F0F952E0666AC74371F8B5C888DC44FBA5607435A619684F502CF625663C7 -94B0DAA79BE8E129E7F5C5AD1B7495C1BC9B1C759FD67200DFF251DB7C95C09E -89EA1F66EADC3439C7234E50DEE5F62AD67768C3A5127E31DC8BEACE15EB5666 -437B94525E34FA2D35B51730CB8CC9D763F1A56F65B8FC21FEC40F4059C2EA3D -EE94D79A8E322FA0DAEAE3B82721F771106F21B7497099A15DADD8CDAF70AB71 -7FC1A9CE6AA0E05ACF6E210DE1CA0418BA7012183FD6BEA93DD38776C68CEF54 -75145C4C0AAFD684964295D68EF8E7CE0AAF272EAB35BE26334C6A2F63D89425 -F6DC7F49F63A53152DA883E46105D8F21F7368F9CA04B7F4BFB67ED9FD13987E -816BC3741FAE1D8630479927F6636F084ACE881372BF695E55747B9354674443 -AC79EF734025EB13E3336B807B6D75D86A801BCF860EF78BFE0C76227875AD31 -49638E7070152E16CFF32B2DE735F7BD089186F1FF68A2CC558B26C7D3416AD6 -0FD3E8929011C8635279CB1D64F3C8FECAF89DF0469DD890E8CD6EF325DCAE4E -8804DAADC647BA4F6A96E27D5F1716A800104777374DFB8AFEFA19F230BE8C1E -2B1DA5B9F504BED3487D1FC3E2A11BBD869AD3E2131253789C00651A03320D8C -F3B2844347AC9860ABA40A83030FB4F567761548607BB01FBE2086AC1BEF4F61 -48AA7B421BFEFE6EBCBA9042FA4AD9530EE7A9A7E11D9BD9AE3FB217F2A9B5D5 -1FA941494B11A4CDE8973C1CED5062F6CB666FD32E4CEC15CA9DE1721D4E6E10 -D78756DFCACD3A41E50C6BAE9A9A5F044BA599F1EDFAE61CFB8B7B0DF5BCCE17 -4D88512A8506E97204457F2D12533BAE1B552F23340D4AD7AF3029FB6C6583B2 -67A9B299882EBEDE6696B97D7E89B0C397D61D4417079D426B29246910F4DE84 -7C5D48C72126F80CB5B135D6D2CC719968C1924EA4BD6E305B7FCB06520983CC -6741DE803E5B6EB1E7F5517A8600491A4957645949701EBFEB42716542EABF2C -16B955D4A1EB29BAD152EC888572C3D4E2F02309DC60E94272D2F2EBCFE32969 -5180EDCE322BDD38E3B34D24819E03ED61C913A9FAFE2DA1822A660C246B1132 -D2C18F76CC413D4AD1BB8F7A6719FDC7C7E54307495BC0E671CC6F4257C82574 -5FFC9C7EACE612207FC80AD04F0CE33A9308DAF6F02EA444F581D7EC9637BA31 -D088D619ED30DD76E1A2D4F2450E4E7470C9ACF7E73441A9C1F627CDA0F32DE0 -B7FE8F7DD39AE7D4C671D775FA71CAC0E3537BEC8956C46DD81C4B29B4C65873 -DC053BC3827D0947EBB8CC1DF80DAB12135E54AF6C489598B58A687011F2019B -3A6ED5AA1797B6F58F3BE160573274624A55B69129AC4C86B33404FDE406D5F9 -76D0E54A25FE781008B57DB7C863AE75212D25AE5B959DA89CB28A299656B276 -36D7113C9E7417E647E1FBBB332C0B838B6C082598D7C606E50D7E2419EC543D -73E361E9683B599A2C1050C5B73BF815A467CD414AD37F41BA211B4BECC383CE -F8FC5696278F0AE855A1101E512572FD3F30D60BAE1A0165A568B53BFF23CFA0 -1CB2B26C973E5A2E0B5FC41C5A617CE7773DDF19EB06A64C2CF0F0637D8B84FE -FBEB8BA8C755AC8302734C06746251B8A35DD4CE918073012A3AB930615D39AB -9A6D39DFB9E17975CE7E0F2389D13BC641F3AF66ED0B4B6D62FC9184F48F8015 -9D4D51A51C6AC5BEE340ECBB958B0F757339CE59ED8AB0761E98FF7B02E0DDE3 -C4E11BD53D1841001683F4A918BB80487AA12E23975E000D8597A4B72AD70EEC -13A14F6C41973A73DA97F1077508F95C54B0742282F8368AB9B4FD77DFF97B9B -27BE5DCE47E49FCDBE2220494A0C4FABEBC926DE359660070BBB1FE92B0F6EB8 -5799877A9682068BBDEC79A122412E529076DF3FFF89EAE2C76F4E9F83D1B1F6 -B394E5F3A25A6CEDCA2193ED7D5831A898DF3B077FE4881792BE4F1191844BCB -419CBE04D43E8D1ED531CC7DB4D033B07DA64BCFDE1D3D9FC2CC33932EC2F715 -3A2D424CB60C4C4209091ACD3A0E12E39EA19748C5FB15BA2942F329E9E98BF5 -B97169BB6B8DAE6BB288142A074627C456D3F4F23539D309E4FC50D848724F02 -FBFBAFD4191C86E720AE8EC14A1EB8438EB057792443CD022CC02ADF3E2EE706 -A83A2B1EB430F3D6FCFC76C5A6CA1FD397EBE513872D78B38B21F638162175CC -21434D7045DAF1504B168D373EBCF3AAAA731D3F5F7924A372EF9874AD440E88 -59FAF76C354DA390063D037CA20A40DBA216F1C2C2E4F3409830E8C89EC0A471 -1A165C821421933BC4EC9389803D648F4694EDC56EF123FDEFC8BEB2EE2FA465 -DB359CCDE2EDF4CBB8A3AB9B0ED4EA8AB7B76AD9ED10B755BB6E888741CFB074 -F186B4BD5E25F58D77126B2E867090A02558950E0FFBAE05C61DD8C35281311E -6D5FC90F3C19BF6AAC7852ACD7A6C23BB7425CCEC4CA6BEA6E483CBA2EBAFDF0 -E83A82E10CE86CDA7C8CD4775665A7BFFAFE3BE4A853300D07686E90BD38A0A8 -82DD035DD61836C8CE369B2FE936880483554EC570A5FF29A0F723944E63E90A -5127DFE8379D9F1371207FD0A3F295F317F3F1F6799743BB48484DF585F2D3ED -BEE95EE42EE02F75EF0119F4C61C520DE95CC782DF9488B75C345F73C3860FF1 -55F3D51A6FEBA24EF9237BA1D85AC16E4ECB66F38D9B6C9B25EF7127FB458496 -7757AE47711B48262210385FA123AA0CAEB9AB37C78E34907285F930B9A523A6 -362DD5415C71A001D9E7C03074DAB5D3B3BAB45659C13E20093D0F56B2D3F889 -9445BEC3182112CFE9E43CA358C4DAA24F1E84F3FF28650B4CA7B1F36DD5433D -32E60A285B84505AC5FD4AC687BD4FA29E2AFDADEA3707ABF193F87C7C1CC2A6 -5D0068901129BBF5B5B33452C69796C3B3C00412D2174CC03131DF534C0913CA -0EC32A7D34228E1CC2A90732AFB04BD672DA8FFFDA3A0CF66A3B8352D98621F2 -0806915D35A0F1A78DAB265214A237D0A0FEB6FF4888CA17F160537FF4D57F0F -E0F08918E7234D7F55081CDB69ADB7226C7C93968F53787D479CCC0189E53E43 -470B5B026C648BDBC68A7DFCABE460EB7439619DB8DD7F4D805A9E9F32DADF5F -FC907E933F4B2372AFB4A0E71B6C99F8FD070B8E404803DA04BA304BACF7E9D0 -3998888B10A013350EE8544AB2CB0A86FDF50DC14DD4C7B12508B9B3C699F513 -48664BDDD1B59D91FD20002A20C090AD0C36F80506580DBE01B310FA8DA9648D -2542A7C69CD24596BE9EA340EBF1DF3E3CD5F69F97C57422FBB6E833EF8BC8A6 -5B9E26A6B39B920E728EEA4496D5510E64573EBFA197BCDD279A8FD920673EC4 -F2C4DB29637CA85825376AF0E6A9BB42306D8C93204350DA9E6EC7D905A688A1 -B210800833967CC378B622927EFE45AF7E340A847BF5E5BF6A0843D326243F0E -CD8C53FF338BC9EF15560E58923F49975F4DBB80FD0419B234EB17A02C82D716 -36375B3D95603022C11CF8D3E849007DCFEA3F96EC1F805EBC432489CDB08C0F -74ACAF542827FCCE89AB24BE3A3BC6E36A466A33E1DA928AA4EBB2AE55F6CFD9 -A06332B3996C282CD288D5A6AAE071FFA5388AB8D88D65A7179939337DB7F57C -315DFB81659842D3D1E4337E88B9DF0228464527D62C1AF0159037D454E82236 -B647F119C7A0C633CC4F2F6D07D5BBC3E5565CEF71321A1AC4915AA8328DF6B3 -2D091D8BCF4B3DF434681D45568C86A9026449CF2C3267F9812441D98607A6D0 -36FFE0C91A1639BD66158469A2359A626C5E0549FD06BAD1D0EBC6321349CB51 -9258A948C22937C2CB277A99AAF997D31B7732C5629D94AD7866B704B4A09097 -1DF661025E2F3F37BB52ED116A019907E76727279FE9F674F0A267C7D7AA28EC -73559ED90501AF62F9BE0A8D4B1E5A8A970709160F12FA954601BDA2B090D459 -EFE8A877F135837F11F20E2D298B25500B733FFA1357895E8F767B5052C6239C -E72ED4F5101C2F649F31EBF2052235571244E1B20A6781C10A8753E85C25B717 -9850B987DDF220F39FBCFDB7C8C669C136C563C3ECCF41C1475809497BAB2CBB -B8C6E1976CAB82A8CF9997FB5FD7785BA3E9F5347E6C2503A58369028FF11A47 -B28A93C32B6410F30FA15F796FE9306383D42E356DF6A2269E4E651A7924F0E1 -B3D38215C520E17ACE24548D699AB625E232BADF189541031D54E7A9B305FCA9 -EF39CB6EC17DF3744C9A7E79BFC5750B45AACE041283C5E4B9888A21F7B179E4 -387B7CF66E0AB6DF0116832A6DFABD025D9D46038CEB07037B622BF351AB9935 -F90CA5C8AB11A973BE4794777C3DD0B372209C852426E1A1C8A40E6CB1754DCC -83010C1510774304617F29316AC4337F46AC343950E39774D5C61317D1A2C058 -67230E537A6F9DAB0273E0329A0828F6283265DBFF465FD7D01DBE88AE5C52CF -1387BAB74BC7DD2090C4AFC2BE6724CA52960873549E9E0CC386AA5B8E52A8E0 -1E364F72B10F03CE93DB4AE6CD7BDFF8649C22C94872F3964788F42A15553424 -527127A604B0EF454F01D5BDF29CAC5930541320C4C583496516DCA2D0FF32D5 -64A72056E76441A491FCB90C796C344E44BA404CC102D5AB0DBC021C3EACC107 -51087904CD30DFC1D4833A9F00324C965AC7585DBCA4E59E0D62700B85C60599 -CE83BAB651911EADE0A721E37FDBD65D9934B8500988DD20132DBEFA6BCD468A -B082BF665635690E2FF0F9817E672AC48B444BFA860B8186F4E0E31FB6824C82 -BAADC89A3438CC49A2FC0BC7A943D4CA2573CC0554B200981EE2A353B664E09A -FBCE84F40F4272B5F49A20B8A6B72FC8DC0E196B682CEE6D44A998C8F9CA8952 -0F69044C11100918F65DA1FEC6ABDD85DE905992ADF98671B2ED928A3D4172B0 -0264DDA8684C83B65CC65AB6BB4E0EE8F26EA57B93C3832B3147BE52A414EC2B -A8D82D47C2FE5C2C9E56328E0720E866F1174D6C6F01C6E67D364C1E03F328AF -3A332CA201854F2FBC62D00809DAB87E8F9B9DCF53F91A8BF0837D519669918D -D8075B96537B2934B07EC5E620243FBD5C6C33D70D57DE6C2C2CC298ED36813B -4BA99A4395DAFD7B4CDC0BA6DFDCA239A3C867A2875C0CC515FEA878222AA1F7 -070F30B12BE68797D48EF5E9D526583969428A1CA0EDF80163C1249D36864BDC -F4EE158716B5A421FB6CC73FBE47F5066B2F7B7F8A201B7C9B6C6275AF9AA9C8 -7AD9AA8F3D6E3C0B6E8977F377B5619815B15399AAADE8DDF9FF70A5D57FAE03 -91E52CA6AD5F9974FB6CF04C55965C26347EEFAAF6DFC61F373F0B8C5ED90BAC -D772A578F78914E048B04D1A29DC16E5EF5CC82AAED18AB74B03386187406661 -BDE37772FDDC4C406B57D7D74B1FB9A9BB9707E57B08B89AD548BBC72211E8DC -9324DB884C5F51F372187F3FB62D43C0930FD7F42F9E3562F9262AFE066F42A1 -5B5BCE7FA7ACF8C2E86A6AAE912B747F2044756E3E7C376A583B7B5F83EA0627 -6822BEB77502C8728E150E66804A8DC068B8EA3C5CB1732D39EE9FFBF4416AE4 -65C1431836D10290D42F8373C023A36F653C0B41CE1548C45DA3910F808E953D -B5BDF8EAFE726924D6A8707B9B82DEBFC34BD631B35E11632E55F6936F56E9B5 -0063C3E80E6793EB6CBD841E861AA43E191AD19A26DA142998BB77A2D37BC88C -0F6A56ACBE91D0B5D82E109D716D369B3C1EF8A9B22DC775AE9C5E6E71CD6CF0 -49D5E97EED830BE3C955920572E432D2FA90BAD0F649D9C980C99F5B28DF8205 -E60564FDE8F48A514559BBC884DFEAB47D9A1946FF786B5C82AA1D7C7D9E08F7 -F9310207EAEA612A399008C7702C2B962D125DEA17269BBBFF98D855E18B84C9 -7DFD438D1233E1C88C594EB0020842DAB034810114C7C48E7903D07CD740391B -659EC0BF811675563FF364DE1C8AECEE02A0C957DEA2A75A124BA6240488983E -B5B1B80038BD61588D70F3AAF332CF8162E0B55D0E8FBFC4550F28DC1DCE8A9A -2592AC0069D438ABEF211683828B6C22B3081C32BE756BB5AAF5F39174D7C41E -B7BA14F6DBD1D25A9352BC4122D4156F5977C9925326C37A2DFAFEC143CA7686 -147F2E22531EAD1A2BC6E50D491F7D6AC58650EB6433C93A951E46AA75F042E5 -5194CF99C5C78FF1E057220A991790CAE9F3944923FDDF1A788CC80E2C932D8E -B488D47F6C1522C0228FCE8B075622AD4FC62DE29F830D136BD28BECFB0767C8 -1B6DB6215369A16E332AC5B78FB5082DBE0D44A86BB94B4C4E59DA66DADA9BCC -8651E547BD3414E29898862DD24F2E4A1335966313B9A4DBE63AC6C6E55A52F7 -A29F5BD06AC40035C29F3515FE9D944CC8EA76D358F106C5C9FCF093830CDD69 -163FF45E2E8644B6D3AEFB8A7894859BDE40125B3454C505DF2CD7D45188FCF7 -98B83AFF66C94BC4E1E9F8BEBB6D1038B79213742987C5D6BF6335289A9E3CBD -A505AA920BF1375EBDAADFBE7A39CEB4577C103560A54891E5442C46775ECE1F -91C294BB654AE4F2E027D84B3BB1977491DD0FA21E619F70874AE1FAA82AA0FC -90D6B7F034A8B7073B36D1FB79F5F643D41E321AEDE6122E2C878B1FF02FD3A8 -48733D44BE8A84F221163953E56D723B1AB7730EB990B5BB0E2C3A5D6B77B3D3 -882517CB1AEB63C18106F3A6066F0F061C875D3517413031AA6F3109145B7550 -A90F887B1AE441E1549333A77F17A9E995485765C2E6D14129CCEA30BCA1B9A6 -7CD0EF171E0D2C04CB1FEF06CAA50D8F2720CE534B894FFF9C78E693D636466D -8B4D64285D6091859EE7052FF54113B8E772F9F8A78B5C8FEB72B9FE40AB5444 -DB99C680BB9F9309998A4488FF6777314C3A7CFC6D90D05D09CD5F437BB19350 -9173CB3943D0E414F162E06FAB9B61FD06D11FF90542858BBBC657A0624406B9 -9C5D3DDB47A1FB8D8BB7439E94E04324C3E76712B752E8D766586807D919146A -7181D764EE93D33C49070B824337D29A6F117CE52CCCD588ED94E25C8014EA71 -BE4FB1D87EA3097018432CA89320ABEA25FF5F7A649B0FD13A333E214703926E -7384698F95846C1ED1309F08467FD2A739111CFF94DBCAC0A75A9EA78E535634 -26239B4B15BE952748A0DCF78BE79DA2D130ED71086C55FE8B70E174596AADA6 -6C14CB53504D0474F318D11F03EDA4AEF8DEE94D1C105D94475954680EC8F6D8 -2DA09729EAA4011808A5597F3E7F771622B7B5E3D57768E2071535D000AE2CA9 -E1305D52C062CD6E1831FD71C95BD59ECDCFB2F3D87844253F6672D434245ADD -FCB3779CEBDADB884281B83FD0036AA29D55FB7ECC77FE1468648F76367683F3 -90FCB4EBD75A77D9343C87A59B29E03F9662F2914894DA25FF0448B0DEADF00D -48DB75ED9532CCD51F6CFF0F99AFCC16675B5D73BB355B2F2714B8C72C34FE81 -B44E4ECFA9568849CE91B72AE08A5E7D0792E25AFBE80C2774FBECFA2646EFC9 -495CAEEE7CB37055439E826AD42B0DC950EBB34616471387549D0DE5EFF2968E -47D28300F14363073A82B8DCEF84B26CA612ADB6DE0971B4B7B2BA4D398AF060 -8BD425CB84AD2E5281EFA4B3E86338925E357A935B262A2BB3A00B558DF8EFC8 -DA18D7CD172E8967F42B7B0434186008FC5F4FC485BB3154928D0FDD01BE4EC0 -7C44563E0B1C6AC21C2D9DF23FA5E5964E176DCEF861D61B305B71DEA6416566 -B379473987F6ADEED63DD10B109C87BB30FBE964BF8302D613B019DAE722C332 -6AE4C6E1C2FA92CD50F61A448E8751ED0693257749DE7669D41C7E4C68217C5C -FA3083785DA9B57740B2BFDFE63D199622676C78C63A918FCFE3490ACE7ABF41 -85B00824EE2E9769EB021D73CEBA4591C90C21A76E41E3A59C9F42D33D8E79C7 -02B5BB6308A3452A178426031D3C9E49FFDC21D24CE28B5DC824783DD30D3570 -F45D35EC05C0B409D96446B409203B52D1B9AE60ABC839E77D437388643039ED -68BD2864BFB75E5D50B1297B0615DF446C1ACA4CBA029E1B788936A553651FF5 -525E05DAAA3C0E7126D2A27F1B5F3BD92320B91DB1A53DDE5B11977CB68E5305 -5526278A91F63B67BF1028B1AA6BAD92313063917C22B5F595DDFA49FA8E27B9 -B3BDF45B0CFA161CC0A511D1B346C8C87B028F55E6ED02FCC8612812BC51B496 -CA0D181E557306453D9E2654EAC28E525B996EA79DFD1FAD31BBAB4B03B877A1 -4AE97382367084A129B213433070F609C50FD2322F5EDA4C62257FD516E978BE -2B9B2A93BC13169A3582669EBD9B12F85431C09D4917B6DE8EA37F8FF178D05B -310EFDB570A41E1A8787DAF20066F21C146AC79131461F05DF3A433545746F0B -179FDE9774C5EC24CAA13FBBE3678889F4B8B496D853B3608B9B311FBE6BF1F3 -8235F18B1239FEDD8F0AE08F87080984E120ED49926C4A509BFF8DC8A7F14758 -9A29003875FC10F64C7BCDE95E74BC336C5FA251384E36242827BF4FB53F5D1A -3FEA7477C9C7EBB48EB692C128BBF8ACF196E954C738E407256F47BD6A32E787 -1304BD2D591BFD192957CD07F9859E7E575AF2FD01F398E735A445C9C1518C15 -0B6F7A522EC0654EFA6391521489B0FCB80EA988FB6B1447DA2AAA4BD49A37EB -3894879736562C8202DAA48D6A709D181547FD29A8A5A37273050AE8C79FE880 -A989DC8634B9DDF5601D7FD9FCB22694BAAC6F4EF277E7B5C5BA6D035391951F -8B0563B747B35958FD439298E17D77B91E40783B3B4872B0BCD3C97D3AF55E25 -CDDBABE2A1B995AB5F8FD40E98D483CB5914D82F4B0EDBA181B19643DE8E3A67 -B962755186D2808CD4831A1B335B56757A39AD89884DBD60AB8EDB4D8D5A9958 -B96C523A02CED21E213A19AC1B72503B5F64F4A9461E506A2486EB42A46DF49F -24576FE9694188DB022B99DBA921D03B0C81C07C209DC9E35700E780A9D2AB41 -7102576C16D9EC06A581B4FDA804EB4546D007AF1E4FAD2E325D6577CB010119 -EE27B9BB5D50997910241722DBFBA4C84CAF2F89AC9C8A4AA7B7A57EC31BECF8 -923E0AC67A5A4D89C71E3EB35AEDDEA8CA2DAC4CE8F7348401BE8713738CB715 -EDFFC05B14FD2D2F36781482E63C1817EA9D3B9EBE46D396BDB21CEDD2CDBB04 -9FE5005A739CCCD7766DB4F59A97C095C9F0F9DE3FB26F35760619E3E496F3E1 -ACA51F0862957BE2EBAE58316B4C581D042E234D9E5F61CD3D91C70307CD9E3E -A642C76C48076887D79888FEABA3C6CDA215ABEDC1EC16724661BC2550D11CA0 -C04B8E967DE46DB61FC1D20C88A4F93D294955E9D7D47431FACB1437808AFF3A -933C2C6E8DDACCF3BCFA7E20688885952BBB925503A8A266138F3C87E7D92885 -BB56658E18B2B043F12BC97B5011829CEDB1076A62E93C63A26C3B41D2C6D3E4 -F282F77723B833C28BC21B64E12778CCECA4715C6FB780599DEB8555767CC5D8 -12A830DD1F5C0464F6C08CB4AA240C08734AE4FDC4A69122248489A14DE744E6 -A8B6354516EAE77FB0430D847BF99B2C116AF7B7DE588168CB706C370D3AE925 -04F7284A1806F5926E01F4B1E0C034F203B99EAEC6DC2707FDA16F8A77CFB733 -0C3EFB883A4A12511975CF2A516C282E64A0B5837CFB13CD1EFF132EE853A732 -3EE2B424B4F503AA5BE4A897B3A1E3D6CF48E662E2A39B27334809B079B02BC8 -2BAF9FEE5B0DFC858B4473CE0ECA9E7F45BD9AF29BAAC5905D7E7E95206B1687 -F7EE99AF79439CE8D288255268C28908A5AFC84F025B758E498483DCDF4EA4BD -B8F3DC4573BE7836E70D2640CC16D054EC47C9EC99AFF4CFC04E34D1229BC683 -11D9C38C53A0FC38C4A1BAD15651BD87E1961077DBB2DA195CF8073E6BAC3EAE -7EE00FD2DA5A92DB75BB509928A628A213405A293E95419C8CA60310623D7A97 -A3DB96F906FD9441DAD0CC4B8E0669E7DE97B6D3982369E8A05E537398FEAB23 -026A5E404B612318FD4DBDFDF362D90BE50825D7204CC0EBDE8CA985C28D40F6 -6FC80D07E063220E1389C8B4444FC1EF173216223ABCE97E83720B3ADCFF1BC5 -239A2E76DCFCCE991AF43DBE0528C664732101400272ED37F7051B5018A4EE62 -BC1B5D636E58F8FC1337281A35577CD3EEB9DC85006CA82BD92F20CB63D40AB3 -EE2B9E19873C783880DB864E1080BDE6116B499E08932AB7A4B84C71FDFB483A -8F06F63BEE22D5E61D69259A238297CBDF6D21BCFF7D823583F9854616A41D6E -2026C604F4646251400B83FA000C9C7EF7D8AF6776769D4BDE3541034E56FD8D -5361EA706078167AD33B998E03B2338A0BF623BD369B6435007C4FA7BABDB516 -4CB2F0F87D2C3A116D572E7F5BEC50699CFE0F196DF0065F1D5BEC016B931C46 -F3967C5500B941F43E312B27CC723DA1FF28F7B8E7BD6D9B944E33F268A81A71 -4B60C7BF5ECC9AB4E763612D6A1014D1D8A5F272029C9AB2A08971F1393560D7 -954D770FFEDFCF9BA7AA4DA2CB76489B413A783DECB9234663795CDADB7A8A4F -3B8735CB8719A9CAD9CC84E878752E1445F6615C5FCEDF8828E7E4D96C8B5740 -617CAB61DF4D397B56F72189198CA66BFF231F6811962A762EB628582B74E528 -A55568A99B341ED6C2B7F5020938E023A17782E73B1513E54A9D5A293FCC9C64 -2ED629980178458876A7183DE309D9841BDD95B9B01EC9BEB82E3A1A0861628C -A556F9EF08F8FBCACAC2A2BB -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -%%BeginFont: CMR8 -%!PS-AdobeFont-1.1: CMR8 1.0 -%%CreationDate: 1991 Aug 20 16:39:40 -% Copyright (C) 1997 American Mathematical Society. All Rights Reserved. -11 dict begin -/FontInfo 7 dict dup begin -/version (1.0) readonly def -/Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMR8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -end readonly def -/FontName /CMR8 def -/PaintType 0 def -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0] readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 0 /.notdef put -readonly def -/FontBBox{-36 -250 1070 750}readonly def -/UniqueID 5000791 def -currentdict end -currentfile eexec -D9D66F633B846A97B686A97E45A3D0AA052A014267B7904EB3C0D3BD0B83D891 -016CA6CA4B712ADEB258FAAB9A130EE605E61F77FC1B738ABC7C51CD46EF8171 -9098D5FEE67660E69A7AB91B58F29A4D79E57022F783EB0FBBB6D4F4EC35014F -D2DECBA99459A4C59DF0C6EBA150284454E707DC2100C15B76B4C19B84363758 -469A6C558785B226332152109871A9883487DD7710949204DDCF837E6A8708B8 -2BDBF16FBC7512FAA308A093FE5CF4E9D2405B169CD5365D6ECED5D768D66D6C -68618B8C482B341F8CA38E9BB9BAFCFAAD9C2F3FD033B62690986ED43D9C9361 -3645B82392D5CAE11A7CB49D7E2E82DCD485CBA1772CE422BB1D7283AD675B65 -48A7EA0069A883EC1DAA3E1F9ECE7586D6CF0A128CD557C7E5D7AA3EA97EBAD3 -9619D1BFCF4A6D64768741EDEA0A5B0EFBBF347CDCBE2E03D756967A16B613DB -0FC45FA2A3312E0C46A5FD0466AB097C58FFEEC40601B8395E52775D0AFCD7DB -8AB317333110531E5C44A4CB4B5ACD571A1A60960B15E450948A5EEA14DD330F -EA209265DB8E1A1FC80DCD3860323FD26C113B041A88C88A21655878680A4466 -FA10403D24BB97152A49B842C180E4D258C9D48F21D057782D90623116830BA3 -9902B3C5F2F2DD01433B0D7099C07DBDE268D0FFED5169BCD03D48B2F058AD62 -D8678C626DC7A3F352152C99BA963EF95F8AD11DB8B0D351210A17E4C2C55AD8 -9EB64172935D3C20A398F3EEEEC31551966A7438EF3FEE422C6D4E05337620D5 -ACC7B52BED984BFAAD36EF9D20748B05D07BE4414A63975125D272FAD83F76E6 -10FFF8363014BE526D580873C5A42B70FA911EC7B86905F13AFE55EB0273F582 -83158793B8CC296B8DE1DCCF1250FD57CB0E035C7EDA3B0092ED940D37A05493 -2EC54E09B984FCA4AB7D2EA182BCF1263AA244B07EC0EA912A2BCC6CA6105B29 -044005DDBEAF88E0F05541BBD233977A447B469F013D8535A9D7023CC0FB7B49 -A95CD2B6F18935C37F49E9A73E97A8602C5C26EE13D7A04A188336FCAB4CDEE0 -23DE9D803FD6E8D846B3F729BD36137E834E016242CD2F7BF048959DD45AD413 -19B985D05E5D422F3D0968375EA6A90FBEBF8B42B15F15280469D69629C08A42 -1C298CC027CC288B9C984239ABB96B6A891C1360D08F9ECC22202861E4CE9B39 -8BF32EFC8C0D1CC0C1622ABA0B6CE939036B2D9CAFA2A3B0C4B5DD9AE5B2D798 -CC856CB41F82D3B5FCBBF70D07E05369713730081901FEDE318F9DA81D39F84C -45D0996AC0E8FD780FD2E5E6BD013D98463E0A51034735243F2B3695371E8451 -6A6EC4236E47A282AD2966E06BF3FB59C6222C15A34F1E910E637D805741BC1D -CD426BF31361147DA45BDA2884880D90AEE92DF02AE5C4772537FEEA157A6D50 -3BBB910A80A2EF41D18213631584B343ECFBD6BA006AD6BCAC63E9CD9430DF59 -98091BE32FE17FCA7B32DCA95052F5BACF73FEAFCE5EA47B740FDC972C2FAB94 -E1FE42F8536DE4DD0DBFC4CCF3A96DC1140F736344D4DC796756948ABEE0433B -BFFD9F1A343259444D248598844888F046800D6BFC7BFE3F63900767727A8742 -10C756EC6380274290F84F7B2055C2390BF04B466B5D4437C0D6AC55C90792CE -8A8BB5602BC96118B07FDB8692006E91585273AEFF55D71967011A1658205ECB -A0B0C1CE1F7C5167A5868D5DA81EE5CC3A41983425663776391EA37525FF1357 -2CBD0C9B4644850880C5115C7F0677A605C1009D018A9D6BF4F94A6DD019CA26 -FA7D748D55D441CE1111EFE5254381E1F916912E1B446CC7803DEB5C9B1AF811 -3938473A2FDD49E5A0360F4020CAF9E85E056E59430B18AD352BA929C9A3DA10 -D7C524D92AEA6F4DCC13E2B59DBC0B8C0CD90B1E4E82BCEE516928BC9E1BB67A -060EFD856CC9F1CFFEF90C421DBB3CAFD1959B332EADE93C9CCB31006248BD6A -5D79AA8E049C5EA70DAB46F5D3E73984814E9F3E15A0383EFCD157240D43BF23 -F84372FB3915791E581FA0E4CD457289FACCC08C0D37CEC1FC45DE3751445A9F -824A6B006B5E672AAABEC2B8D5DB7B0745C1D01C52657B7DF4FFB9803FD9655F -B7D34C6048E8BF44A0235DFA9791770CB3E451E01ED7A578512DCA397F24F71D -B2784D0778C02BCD5A88FB1671F8019523D8ECD0F42D273A72F2140D3C14F40F -7BC451BE2FD39FA297D9857745B4B8F8531CA0DFD9E72E8EE0E7FBCDA811C8D4 -167DA0037F9F1F181115209C22FA250C8234695C1085931C3D92585563366C74 -826D4E5F9A61F39E3F8CEB8701591C4A5FC62940C2729A2D9FFAB09F833D47C8 -1B184163D87FB4E5EC4BD91B81C325FDA8ECC31EAC76FAB333A9EE090C202EFA -FB2BF753A5AB8D147F8949C6FCA5922E1B2C6231ED86BBB953166DE2C08A3DC2 -433C76CAA7260AC901C3B4E2E78C8A6064F0ABBA1F4D16BACAC5288F199A0929 -25F1DC8ECA38DA299A229D86E105C29CCD0FD59585467BAB46AECA7A76905CEB -1CE91EFB79E3B4EE3CDE096E2CF63DFF71544E639567BC8F12263B2F596CB4F1 -FEECEB69763A7EE15B0E59A2529A116E6E3BD067BFB3690021068ECBF18F6D9C -3F3F07D8C7E2A7793FDEE84EAB71613A6EA8F6AC665A7C0376A6406171EAF3F3 -4E466A08318F942F2830757721CE2B193F3A7404D51375DF34495AE48356DD78 -E4AB3A71C2BE2094D5196BBBEBF056029805A302F6AE5F4A9BDB25461E81617E -A634959D343DAC10BD072CE16D7C51C120F9B6A1D75EBC4D03DF60048B8CE15A -94FD31DAE86A4BF525C979C7E96BC1DE88069A342C9E07C0340AA83DCF381134 -0C13C315D1B690B5E858A20362441C9F61A20B70392F87078E5C3F8B4AF23D99 -B051B170140D0069DC6E2D4FFAC6E45EE56221264A894AE68FABF04994EF9D87 -EF92B498493E3F0B2F003C47C861320E714FE36F9B4669226E40753B2FA90731 -CE281E469DB371C975B186E2910879681485763CD9316CD4017C5D9ACE43DCA0 -38397FE463F2A3D6B72209FBEA175E75793163F0FE4A2CAE3C7E5061D1A7C31E -1F8FD3082D2743CEEA008B0F0AB55C2BBA23918A1BE4200DC628662775AC2D66 -FB16BB7C06C295357A1BD655CFF3E0C49046C2CFC70FDB87E62C2EA187A0914D -2B55FDECDD9309FC215AF8882D65174ECEC01F38158C4D96FF9EF1B17AF32EB4 -E7C2B4770F5CE67E2B26BA0ABA9116BB3F89944E308A0127C99B1A145F730B50 -28473FD0DE250D63A7116DA1ECCE93B02F3CED8C894E6B090F5A01A26822503C -EA68C5A7BC8734C35E40D3A56449F6AC36406A0818C666F0EFB88BF02AC4C296 -201B0D0848450A54B3FE1A75F641D1592D265CA639D29DD99C47AC8DCAA2FE5F -0216CD31751A42FB48F53200053979FD87DEBBF427363CE1748FAADFA0C6E2C7 -9B407F5D041D9383385891A86F33AC51F0C7F4902580D9446D8118D8EF2BB177 -5C2A39867EF485A454C07CD835350997F5C18EC1C3A83E57F57D8A0813EF784D -19B088E03344EEB3EE8AF03D18B2A4EB5A57E1DE60CFFC487FF1C2DCCDC88C40 -1B7B1B16A0DB3AA16474F6CF5F92C7490CA1F3D94B33B18DAAAED531D2740961 -53F662902417A01C2B33489862A446A5D7BC27B87ED382CC41175114C7B0D42E -6DEED8A64B3034F764BDAFAA477191564F3EF1339976051C0BFF59E56FA20C7D -C5954E0A805A4A8431B40401E8A188D2409A16013427152F64CD8CD502C5EC4E -B2F5AFFBF1F4D5BBD636109F2AF10BF4737DC0F722E11649EA017EBB2F4F531C -9D08E88CCC7D3345E4B2A96F14C9CF8E211B90F8A2CE2EF57A68BDA5997271C1 -93A69D91A285B2198A12F8B3C23FCA396CBF176473CC5A4C4E24ED72990BDF14 -162EDFE244272250864246D493134DBC29C5CF2C8A5B5E27FCCFC7C577C014FE -FD8F723CFC46F2D9700738788930F22656B5F1AD5A34C4EA6C96EF45C8E68138 -CE87FEA609914E3936624E1E6B167A60237A34C04FF1500C52E7258FDF3DE58E -FFED1699614DE43622D1057F172E54AEE1257FCC853C0D1828B072F7F4477309 -4E3E42B5C00413307335285F8404FE1229D1B2006D482993E7F96D8C9BB7C41E -CB0A9B91F02CAAA3B8A05143ED6330BE0ADC9549D1AE8A46B2BB68E3002F3589 -0D5AFDA53BF17BC6E069E5B1CB3CD24362C702BF44F7823E005F0700AD2E150C -CC5E486F4AE4103A5D0C7396F31C42843ECA1EAF0632AB3EA191C0701EFA0C42 -452C72B6ECD57240A505F49CDC390DE48C5251F9232F837CE604CA7C6AC0F742 -6742EE1BA48956E6CAB43F05485A4457F44BFF2E75846BFB56F9C34B17CBF84E -4133424ADA7942199449554E493E2CBF5A4EAD39A22C166F02E5332197F32C88 -542CDD0D5018D322396F3BF767CAEB823ECD801D22E536D6201747DE4D2CFEFC -30CF112F6DA37736C836CE44A458B170B974F2BC9B7EE06AB478F2EB94774A5A -F18E82473C5016AE0FA8AE9DFA174F17945A5F3526C73A24D348E2A2FD14899E -5D33177E01B7D101A571E196405CA95FE795CBD73F7185DE01F99C1122B2C050 -A4D54AC01881582AE55E34FCFB39189C4482230FE1C01F7BAF31F97B59DA6823 -606D7E318EDA739F6C18B7A3F011E76EEA67C696EE9EEBFEBC8F1F95CB450D0A -E8D3AB2C3263ADAB024A24C7FA0A97A999CB15CA3A4F1004B891C3B1A61C93AF -DF660F538AE9E9AB3100AFFDE1C2FC0A20BEE9D615E3CB4B53E5EC018D155C38 -A5EBF387580F8DABA8EBD854D110A3E26E68AB1864DEE8B0761BF79929D00B4A -D5C678B3554FDC5F3FEED2891CFE346738B953755CEB44F62C30CA29E67AAB6A -2EEF052589E23BD9BE75BF55C20B2445275E393739B07F99237821B0A5E1A20A -CDED05F6F8E3A71EC35CC05B292A5BCD00DB9E1AF709B534B6444DB05E3DA8A3 -96AE55C605561C0B6A7554B15E92449EE11B8F7E89CD9A70AF84CF6C7BA04657 -F0B0852885895FB5CF40A784616C4D188608E0A05042F12266D8DAC41A327E27 -0E2E6E10B4B3C0476393A61ED9DB1EB1F176E928D6238A3C0D2539A959EBF5D0 -3BCEBB0322860527950C55ED2D4C844044F7F0BB337904F99EB74F637236DF00 -F90DE9DE52149E7C6D0B6D6D36AA85AD970C18F322EE75462A2C52DFA781E734 -2BCBD96660823A6DE010001EEEEC1926B947F9E9CDFA883AB9925780381C1DBC -3417EDD970BF8482C8155C73A02422F562D9D9F56606E48D627E802366DDC1EE -B7331E7FCB55728B01F0D97C23253E04C626AEAAC55F4EB216680674BE270602 -B80192CB609109F0E350C48F3E20D42B05F067FA0AB18037FD0E732B296CC768 -BF3539030639D6D8ECCD940032995291AE1FBD9D421C673F4FA9D34AE63D2DFC -AE03320CB59D13D6B5E4E2A3E333529185F0E23874B114C8F4387EB59B475109 -E096277C688277DD584572410DF275621E4AADFA508CF5A69B7974B30178E2AE -31ADE87FA201AF5FE922D53234D351FEFD9DFF562E1B281C7E2A68CC085DE9C2 -AE436D46D43CE94C523CBBC82D96B7E76F8322A4E19A8C6CF241B2BE49D38DCB -AAEAF2B26D1DF4E888795CABFC02D2638D1FC37C2F49A3C83DA895A8524FE67D -4F4D0AEC23A47590D0E57366131C7FF955ED112801CF5BBBBC10E4A0E6BA5411 -2CB485EC1ECE33939A046FC36465D7329E68C0B2078987880AB7591186C754CE -4BD0B637C0261F18F73629BF0ED66CBB9FC3067856D540C247237141A40E6CF4 -26B25A14A384EFA64ADCBBACD45A4A939F46EFCEF30FECCB2FB3F6BFB718CD4B -E3246CD88174AE242FF36A1C6E55B84B9C71E3654A6EBC1ED4F46A712F910D03 -95E3D9029777525353380EF5ADCD5E661222EB84E393B6B0C45D8C84BCFD273B -5C35E2F3952878A95BE4C3AD957A6544D243BE39B542F1360026AB11ED702D3D -293BE40D768BB9D1AFDF023222AA2F664F4394C9ECB6CC52385AC5A0994C98AD -B23FF9A62CA38148761EF2BA540A2BC108B43D3022F63BF382240B385F897E70 -0420B27358E70C984AE457B3F9F7FA3D1934303F0CF8859F565B6512342A95CC -2D5CC1676C56529ECF3F17EDF87C18FD2503458F243F30F6CDBEC993DC57F4C7 -223C1F1283D57CD45061C068EF11CE821FDAFEF0C503D5EB4DAAFA01DC78A5B3 -0F95993DC0278379732CF674F6F5678592F1E6253DA074FAD85701522A4A4344 -BB087766467B1092E9E39F17E102A14DA28712591EC460A8D402D929035A469D -1B5D098190F4E61664C8A63BBE334ED5562441877A99B0D200AA114E2D03DE97 -130D476587CC81CC5704AD0D9083CE2F5EBB6CAC4CB03BB40D8BB8920C84703C -CA4EEB8F33911588241A4BA02A2E1A5C65B2F5AF7314C09416B20EBC97386D90 -EAB27919C307D3BCB700172A99B5BF37CABB3CBE3F1B075287D2D03721496D22 -DA6BD5BFF4E5E62611A0723BEFBB65797C88249C6804B6E93ADF3AEF7ECA513C -CFEEB66F779878BAAEAA20EAD7056B0F51F95051B6190115F4A447C53815B4EB -94B7900E623A1C41F9CAC0C7D65C2BB54EDCE5B9D76322903BC48DD047537D06 -46395296EC3E4A1BB6B153ECD9D36B9095C3123BA5B32BB8646698E8BEA95666 -F9867DE4ACDFC7CB44D4DCA8B3360E73F6D1EF7DAF326A9DDE9EC22C0616AD99 -5ED955DB0E578E7AA0FE141F3C44BB37CCA9955003FA5D945F4FA44482D44475 -0D9CFDE0DB6E3D7156629283E945C7DC35007BB44ADC0C29421551B4793C48F2 -9BB25FE573EB17CEA97DA58230B1286AC7CC5179C1E339C6743A0CC72BED3975 -1FFC2313864BA71AB5A722C00E0BBFF356348B9EE6D6F1A5458FBD460641DE67 -6E974FD89E45F9CA10F7E72AFE0343B7A8F5DA0495D358D702B8CBC79F9B473F -A8D9C902EF7F9B59C8CCEB6299A538909BF4FF5AD9185F99F14DA45709317129 -462012B5B4270A4311B7B6FCB7D3EEC1E5FB3ECCBE388630AF64D4156DCE0D03 -A26F66AF81AB3F8AFDCE48BAF70E9E4861737A012DCF2F8E77967F72F043795E -5C85DCA9BC49BF7A7E0C4522AF30FEA52A9C52C7E4D7CFA537B3777B782BD2AD -2BE35F22500446E1B61E594E911E488C18165AC0B01A7FE1283F7AFA381EB811 -F864B5DC6A4925609AF5039104060330DA2D27A5E2C8F1DF8283BD589056C0BC -6A02AF9989CA7CCF94C6F3D1473D196386A074428FF7583A3DEAF5A8D9B5D12D -ABDDCADFE4EEB2DF9A053FAAE82010A879995E8F9B2AC572645E8914165A1449 -44267068926D2CB31B354EA384DC109EE9F50E9E9E49826F205189A5BE89DE14 -AB5CA988D880CADEFB2BA5AC078A4CC2F33CCD0CA27C657302479A9D1AECE955 -4A7160DF4570E35B26DA90E9BA20148F729C24D7E74C8DD3DF4B207B32304280 -0D5F9406BEE42AE63DF1E5BD68AF1DF7DAC4602CFA999736A786ADCB18A9046E -3961277C68E81EFA14800841E91EDF1C77B00D3BBBECE7F9FE58591E1499715D -BFBA69ABE2FDD2B1E248E2D6DACB125EA43880F29C5A9CF3F0C7DCC43C354046 -8F93F19F6F594ADBE1E3EA938FDC047E52605E4742C428A67E9B18B76BA5AECF -B4AB1E00A48667BA44E189130C0C189D3F977F247164FE5A3A485B52541429AF -E9C1B32BDB3A2D014833FF94AE8EB067DD84122F7D2B51A21A62197EE11AE7C3 -AD85DAED544D576045F6F1A6D1FA0C972562D763104421F30841A8546B4A66C3 -CFBF5DFFEECC61140838C524385E9F7AEAFF5D1660C4359CE2E78CB8C005DE8D -C129827E86DAB8B1F9C5232D97EAA97AF610E3B44166E90224A0A91A43B02AED -B9E2BAFD21FE9DB02D9A9B22294B4013EC8EE266A787A8ABE1E628F72EBDD2A0 -AABE63827965B3200B83B5059D833A971F9042AA546363A80E62311D1FB318A6 -1188E0BCF3F2BD0FDB4F2263C121AB8A07AB275D0BDA536B6CC142B767925465 -964B038F7BDCB7DF5EEB740CF338527D072EFADD16DB5F6BA52A84479542AA51 -F28190FAB15EA23C228A61405811005C7CE0E21EB79649AD6289849F053915FC -5B8555D2BDE28735312FEFFFF4E23C2C2404934D9F7D885F1EC3BAEF0E289CF6 -ABA21F54E0702408F4AAE78D411848AD2830BAE81CF1431011B59E329E07F51F -051FF0C40A804A67734993DD8314E20219933E4711DCB5EDDB90EDC9FF0BC30A -263ED16549BBDDBB3C0898B06E5C52040D544324A7256E5805B68BE8EB1D54E3 -D5BF297005EC34D5BE3FD5C82C19F4E76379BF69EFEB4974D13AA7AC11F43AAD -992CC85847CB09275E8EBE85EB0C7CD557230C3A577BC6B4C2E195D2A5A374E9 -2AC334058123AD77C8B99DA9352A48E9E21E469EB42F554917178E8E63DE7067 -01B3794E24F711FF339AD59867FD694ECC777F6BD608E585DC55A46C10A42B85 -3FAAD25C96BAB1276EF252893DEF6AFB30922C5CA9330DD27385172A9262E84D -641317296A63FFCBF15238BECF67870A09151F99F4CDC061431FCCC3A59BE037 -38A8BFD875CF1475184A3A1C1AF840ED0A6DB62D3FE280A22E4A6FB5A1602ED3 -9FF7F89C106C69F1E4685C7973D284A2468E5B17DEC92AC3DC98DD86308956C0 -DDF05947422148CB98E196ACD07691CEE317FBBF893D19653CA5BF9D3E5E3B31 -8D29FF62600A5C0AFBDB300B186A925784BB46151968E1CB6CBEAEA939D245BE -ADDC77901D84547E0AFB043962B83CC3C741B4B6707FE0E90B5602E4D6793790 -BD15A6522E1D9CFBF761A99BFEC1E7F19BA9582DD6EFD5A9FED8C3ACEB794B62 -90692AA1C5B60032F51633726FBB9D0214F1D67F6FDDC2C84893E2183E1C697B -66D747E980599F5F210FD58EDBC690A062054BF232C89F7035796A4158E142F2 -7421B25DE02811392DE83040DE3BD824F525CBD1FE2570384488DBFE213DA394 -B75D8CB9AB47589F6ADD12F5AAEC6FF5D40CFBA3F9A960A55D07BF742002CC22 -D8018F0AD5FA0F2E220190F6067E08EED313089A2C3EF70B3BE3C3A1A5355EBF -70534AB7B3970DC59493CB1EEAE581219911505BDA51F935D2CCF68DABDB3FD6 -ABCC410555D070321F4239E4BD67BFDFF52527C624694115672D0CE4FB406BBF -09535C981528C0CD78DDDFC9617FE2443B77FFF4CA6D0D6D07EB6349EF42591D -53866DB3B1C7B339613B4ED674CFF7E54CA0F7A50B22B4AA482F15251303857B -EF072F6ED2F967AA49396FC347E94B2DE393BB65F21606C540D0274E2E873201 -9E683958FE822DF272E5D5982EA16764FA0D5224C28237F77669875A5F2E5A5B -B4E303D11D4CCCB2A6F752CF2A24ADE9B924DF6A4267F51C6E4EEC44B54A8E1E -8A4953D50BAD05CBC973541784BE5B7824F8C286F3E9E15FD0AC0FE379F65526 -0239AE2288A59FC5A5D21EED17A5AD8026D15461D07035F7E07774D7AB38C184 -7CF07B72515656D190F5AB8895C978861C89ACBD621C656CC60DBD68F0B93718 -7DF9CC87B75A7C671181321A0B08386BD32C46B66A4652B38C1D022B29E3FC64 -B9E3CA763C617BED7C6553A4E3F8E3B96F46E8D8C959CCB54BF082E87C276ADD -12C976EDDBF1D4567688CFFE8C87A26A467A3F0AA27C168B5D9EB2E8B3A9DCE3 -435445740639263C7F73C35BD8F94EDA59EF7109DB8CFC538D7CBEB46FF779C5 -67B6760743DC1FE4EF1C4BA2485546139259A0390E1E754AD592F94740A3FE5D -6A23B53E7B56F160D45B7FC5D6CF514A7133A97F94AB941E586A184B84885690 -AF9BB6BA97EE23D47EAF47002271BED4285C291230DD7FA1192B7095FB192FD3 -598AD508F9488DBB15D8FB8737D9A6F92BD67C6137C0F7B4E5BA87AF4E70CA94 -FC4C6B1623F3241A95B5DBE3F695F3832D0C4534131FF5CBC576E5C555276C39 -B417935D5597C5A8D5911B83B57EE28DE46D499FBE3B9E9532EF1C67161BCD3F -27DF27B347FD143E742F3D2705A244F732704DEE5B4A8DC6258E2AB3DC113DB6 -A08C1604CF5961159E806FF8FEA1D999C484731B1F05CB62A54CF6BE2D51C232 -3766419DD93FD8A39014046FD92D04726692B6EB2832EBA553BE71782D70A32B -D5C1CB8DF387BCE5C635A19AABA0435547D85116408AE2B783549D8A3A029374 -9DB669DCFDA30485AF3B79B2173F28CB28245F2F5F68F48D08BEBC6A8FBDFA47 -6C98B7FB2C42C8666E5F2D7D37CF8959F1C98C4EBFD3CC7A4E867444A6AACB51 -0153C40A874BEB0BBD655695D234D85F434388FF33CCDA1DF7CB5537CEB03DF0 -40F1697B84E4E7B63825A47994C4E2E9DCB45E77D42732E699BF16ADADB39555 -17D808354D06277EF766613BDE1A622AE94447F342FEC653F142EC2797131C72 -B3C8CC6376150E1556CE2E35F3C20FB154FC2ECFCD630D5BF852D4496BF6CF5D -9E33D3481E968DEC65D1246FE19678C33ADF6009477CED02190076D4C08732EC -F6144083DD3BFC5763CBE8A747F163531CDE873129E314F30596C2C332D5D98B -0FE07C0364B76718CF58FED0B123AB7B217F503BF637A8D9C41AF071B7DFC954 -9C4B6ED150F7DC41BC7F94AFBDB81F367143567AD4A5DA72D82EB109D126004A -4EE29C513E0FF34DF8C77B002E1EA48AC0D281ED349C7F187B842B045635157D -E6C89926E90AB4B066E30C81EFBCE680ECC7191DF3DF03EA1D21EEF9DE3500F7 -4280682B7AFEBCD882E5D682121C807F147029FBE12D6F4F26F2ACB5BB140AC5 -B2F80BDB64B1F9E30324838562B3B4C3B36EA748FA54BC1180BEF7596D9A387C -A057B81EA7CAED9604B7AE6725D31AF3F68BDA19D38E3A48DA9002A2A03814B3 -21A422FA3428E1B2DC2F91F7FC2788496853FE5DFC08CAC72BE1E9F21B54D250 -1BD632321EF35F8A6BD9B90FAD3AB00D0DED3115C757D0D7838AA4483FAF3260 -F36FB719D17A71213F6D77AF59B77B9B5C0EB83C2CE63C868DAC1A5783FDADA1 -CEECE8B6C64034CFDCE117CC166AF4756E7D597EE125FDD6CBC62C9C09387E78 -82BFBE125C7758F69C59938A25B9D92319E16FE252E9B80E8AC99F99E5517537 -C2326EEE1175EF35D500B0FBB677117531E81EE0C4A1EB80C3BAC6D34728FCF9 -165554718D6DAB4E35FA736DDBDD5FAEA6C45664D966DEC76221664C90BC9CB8 -B6D14C5A98204FB1A03B3040B1BFD03D5DE85305C82C0F810A41697C0F98EBE8 -92BA17C8088F8F17BED5E28DCDEC2B30E04C9EAF1C2FE159FB36A451AA188F66 -A1380CB589FCAAD963ACB42BFF3A692252235BC1ED6D88607C832D1FFAD29CA2 -4C5E8BACE100E5ADE2D90A6F0B4D6BAAC9CC1823F7F57EAC3B6491F3DAFD27B1 -0CDD9EAC4E7EC8EAF0BAE3A264C974207B9A1547F1AA810BAE610269E30427D6 -33CEDD3367F63A0F3E9750C0B81196D22707CAA85D1D8367B962BDF8371035CD -5F8808BA6E59E9697762B35507892B967ABBF2D23CC615D6879D08E758DC056B -48403AD1F51EEB69C715B93EB220E8307239FD7EB6EB50BF5C303234CF5D2D38 -068B87644EDD64FF1BC9D21A25E19FBB06497B8311BE186600CB435A4A8DA958 -2B8B5DC45C17A366C3CCA1CE7BFFE2CBDC981C770296996CC04A3CEEA54F141F -C27DB1A955FFBEF340ED8359D2ABA8902D422DAB429989186DA433FA6CEF749D -83ABCC919D81270F423AD0B5B40BA5A46CD9E64F7D257957506EA444BD3C24BE -C5FBE4AFB68423075C039B0AE4B6F0FD79C2E4E5CC67127DEFCD5FCAD83BBC55 -315B1C1CF70C1CD983192A60C7810AC6BFCB349EC9E804686842CA2CC18E8E2F -861C4F72527DAB3C17D079C539237E16F17A04A8B041D9260F27586166FA1817 -8D6F992BA28F34EB93EF5FE24C8D785A0B1E46BD9FACA23BD95C52969C04EF85 -12E996408FD067B7355FE30052CA982120C96F7AFB1B7E1B166F0C6CD4658AD7 -2475A208BE31B8B78EE92FD854555CF55F9BEC2C1EB357D2F47A2335020AC69A -26302B929478B5DCECA0E02B4A5DE4D11832C2BA21D1D930A95DA2A5C0C10C0E -95D576CF25E375B13552FBF981F4E59D2CB54E20FD13DBBA5A5521A056D0ABA7 -4664B33CF7AD67E473AC828D6AF28C20A56195512DB755A1041E909087287AE0 -83C273A01698A56B57C9EC85F00CBC98E6032FFAC3B59F900C2379D79E7714DB -0A4479222B1C39C226317B8258EA2C1EA34D41C4A02DE08920CEEB43EF79BBB9 -CFF64F081D06ACC28A74F3250E97BB922D72526D59437ADA5A89327FAC99F199 -4627F2648BF82DB67C58A296307257BA244E4A62F7F91C2F9DCC37891548304E -204BFC66AD1B0ACC856F3758620C40DB20B801C717B41384FFF5A8A3D4F7DEF0 -4A9F06DF41AB92E1CCE74A29C2619AC2EA75E7CD1B5F0E3522616F8E88B43F2C -0ABB6F5102739C2DEDEBB504FF3C4B0D9EB700FA7D4D4226C87F3240376D1287 -A34FD6C9C98AA1EC78917790B2A02D9282A06DA9ACF175FF68C544D8592F27D3 -AEFCBC1D51420E74525759C9373B96E48052E307064B6D35803639833C09025A -4D8D3173A866FC18FD5D5FF9144DABBE9F4669E07B378787F5F789B60A45FEB1 -A9189F23235959D020AAFD63D21F084A85BC7FF55D3AB19A586360D32BB11AB5 -6F2DCD917C772C360832722C30A2113E79B0C5B2E89FCAFF5E1A5F2286BD6692 -4B3072D0ECF3E68A360F6BF3ECAC4DFFBE904A5B9F61DFE111231291E1A53319 -D76434C10FFF82D29B991A0C4B88C6959706F9CEB453F8F36575FCA16A65DE55 -41743A97917D1E0B3573D424495B4720BBF0195C8E2E5EEBFF712320B75139EC -26D99B1FD3824113C4E1F14C5CC8FB933F7F89F5009BF6B6D73070EFF2032CE7 -CF529F556978A5AD9ED47392F3600F35451BAF5AFBF28556838F5029A02DFE6E -3B2AEA21BC5BC26A2B1D20F2231DA6DA0D248F15112BD91F7F8715129ABC72E0 -9B03A531543D714C7DFEB598411FC67A646A02C6041BF8083EDFAC7278FD3CCD -BA19E4B8FDF9D0B33E12659046184D4003A1D2FC611E5B8785C32DDA2BDB7051 -D99131B4B416224FF72598DF55E1A64D1808C3D5C48AA89D2AA73B043A41292B -BBB5EB3117F3D22B114C9FAF5B2F3813E95CE185893CED08206497F88DCEF5A3 -D0601E389CC7D36E67B356F7CCDF29B9CE66FC9F10426C68A307678E732E65B9 -AE1DE33EF0D72B53232794EB0998EEBCE8E942211277B23F9753DD001057E6B5 -8B05762EC008B3012557755DB6091AFEBD775CAF80E74D46F710FE94260A9699 -73F38BD12173F7D8B988CBF5FC717B0F0EF86C9A16F862ACACAAF357BC227B79 -69318CF0FC41E025FE8CC20E8C283FDC4C2E0A43368FE776B3014087057383C0 -01356B19E0EC1B934641962B3219B455CD0886428868F847A53FEABCEC007CF7 -FAA7B412FDBB5D499A913802B5B47E1C6620AA69C08A3C2011CA4BF5BFCC5A7F -F67341F5815F54966D7A705F218F1CAADB1F6C4D995CD2DED42734195A5778F6 -F08F21A8B1A6AA94EB985FC5ED097E0C6EC6B64E7753F7F47174A76F6C83C5DC -5AFDCF3542C5789D6FC1E4C3AD4A002548E2AA1B58B4B6377A63ABCA36EF8503 -E2A5E671721ACF08EE114B15DD3FF3432AB5A3737038E206B3E41154143C31CD -19F0A836059717AD52D234E80728C45E9C5AFE77336EFCA03DC17DC220387D5C -746FD91FD9134C7746DE781EF2CBCCC7B23513F5FB378208EA780240984E5F64 -B16A28AC72B6EDCADFB7F8A74CA9B2046BF517D240017A0D7599E1C438672CEF -357029DEB184F858587692D821F35F4323E719BC536E79E08B4A029A904CE5F7 -E69EDF9165587E6AB8BDC5B4C97DF4FAFD1BBCF5FBDEA08666C1581E81CD1CAF -8F97DB072C5DD844F926A9EB97C4F61B08E9444E499B766A006BC862A33DA6D7 -9D4B06F45C41BDBB88DAF955CC81A1B4E0C01E4C4041F55F0301D96264CE2DB3 -BD97705F38D5C5F91E1137AEA6D1CF25BA796125281D860778493AA4AA987209 -B32193D51DB37146B662C28213DC739348820EEBF40097E303F336B0E5452714 -BBF9347A3A6208F7A99EBD2A2A30A2AD1ADDE453E1F8DFC3C88D701139BC9AE6 -AA2B1840BA8076C46B0F9E78C2C2CC0C921140D74566D73368F000AEED735404 -C9679310E32A8EDDC903BFEC1E9903B392F9DDCAD95A9BF5613C9F32922BD984 -964C315C82D055790ECF0C2057BEF86680223FB6706382EF3B659275EF2A8CD7 -7A76B74E385D03BCD85965E8572886C60CE4023DF2C0697DC392EB3A6C00DDD9 -1E6E45BE9F53A9FEAC947D3E096B7961AF91565440E812C5A7D83969B0BE6771 -CB1909DE54124193C29C4B645CFE6402D61F04AF66467C3D17FCB62BB94E2EEF -008E41CB7D3ACB8F32D9CA072AB43EE1C1685CBF833E9F3F3A24F5D393928BF1 -F5259F5C6E43B330D16E57E380831CF8DF91A88FCE3B3D8418DBC66BE11E997E -DE181B74BD20E58292AA0F246A6B362CF8AB7241A14140B5E8491746B82DE8DA -AA47E19C60A9A639B86F889CDBA8F97B967C14B6C44DE3741377A91D982282A9 -BCEA2A6835AA78E9E2371BEFEAE20377D99A334674D8947BB31F1430D9FFC575 -70F8FCFA82C18F4DCF95A43D5802F5B36E35A2C35DE1CC682AC18599FA3012F4 -581803716FC5CCC1A07E969455E0C50E11F93A488CEBAB334DB25B261CCD0689 -7581387843A6899B24F56923EF3585087A6C8B72A64D8641DA5BB5EF06A6C152 -4E984B362F8A6A5193D577544914B99A1C6BEA7BF81994C5349F492B2CD24524 -81A2BF350C6731AB45269AE09876657704EF1B79AA97C4F7BFF4B37C8D13C925 -4230CEF025F3D4BE4C7305FEE0706E98DA8FD8A8B15C73F70511E6F087F6099B -D3B611B155F44498112DC5135F160CA8AF802C340AB6F9D364B4816C7F27AC1A -C2EDADAF9D08D6DA6665857FA624F9446F0857E55E7FA0B24962077E28BFAE21 -CBA750E25DFEA6866AFA16831BDD379E9023855E10998173EFA0D6EBFAA50DC6 -186F818E3BCD1D28CD26C4A765CF910D732143849A07341A74D7CA02A189D7CF -06D1A300E4395AE338F82D7CA2FC1AC2BC97C55F12CC9814DBE0E63E6324F1EB -B26D42C3A6301E62950E95DDD77B6891F32A52E1C32A62F818076FC2597B35C8 -5047DF2A617E406535CC9131A752D72CA7DBAE21FAC20F0F8AD0A5E178F6866E -31F47985D2BEA16113C565282B95773F442BBCD93DB8796ABA334B2AC2F44820 -94DDB75A09865085A431C30297136A9CD11606DB96D23BFB4CDE7E86987EC23D -CD8DC5DBBC0AB039AAE122E4022563EE9F42550455D2DCDE252446A840ABE95C -83D0C08C742B07E0F60E0AC814484FB923853BA86BA0263F33B8117C04A032E5 -19C31DA49C415A88D571683A9DD71B0CE768400A38A0598868C5D3EDE3ABF457 -1AE5273F0C938CA9972A824F1539561B9E1902E084B715F91BBFA116B69D3863 -4C3BC54790D765950E4E265B401FAD2CA1A9C4C403836D210F0ED3F49F9238D9 -E807D20B45253E9DA6EB5F0C62DD28C45E97F9A156E5CFCD917BCC2C5C6C4D0E -E5EB5951A5224CA5F3409BFE141B39411BC4AE9D684BEDB184D142166921BC37 -A5A8AB55A5E4C880E11712FE426387932E81E4397369FC3DDCC2FC500D3369F4 -DCF3C7D41247C64DB135FFBF902278915072F2429DACBA13C4E5204DB0A95E08 -B27AF658C0A89FD06CC480FA06CB7A9AE207A03246506686614CBBE0337879E0 -5DACB5F87D683B5743F51222AAEA1825904FAF8A06E0C211AB4B1CABFEB9024F -BA6682E084DEBAB5B07F87E1993D099239DB4160A13083F594A7137C6C5B75FF -B7598EEC6237290289717BD0DEA47D8BC6C9D1203C9F1ED41AAC61BA7ADD08A6 -479438422AA797B425D4FE24FD73A40C49939BEFD3ABB6DBD0E4F1BE0C97E48B -90353410115BD78333121A077F3D5F3DADACBD245D3DE1CC49B7B03D27BCE112 -182C43F6DFB5D469647F516437CB919680840BCB0B2606F5CF193AE1DDCCF1F0 -7642F51EF18D9464624FE91B6742B3DE13C80055AF147FB4AB3FF81CF54706E5 -26B74D1F67F521F1BC12786269D1EDB56995883B70D4A6DF033E8DC00881459D -9EF961015EAF986BA700B99E7320CCFE1DE94318B2FDAE5FE89E3A9CD88CED01 -131EB3150A6F1CCA297A400D76ADAF034223D297D40D5ED09DA675FDB648A9B0 -504D1FDF54F7CAFC76003542F8FEF5FA5A4031DF659738C2ABC150D4C3BBF919 -D12E35E53E88E8E51611F98882B3D19DBC1B01609DE1B37EF23916CA1DCF34E4 -F2CC8EA132A8C919F759FF9FF4DF5F357ECD9BE2B59917ED26EDFFD6117749F5 -1AD83D6CE0EF62BE8C5BA0C9CD02FD289128B780BD3C9E9D36A6060ED7C361BA -235D1053F3A89BFC628BC29807341923FA1131533B3385323B0CBCF3513EC6C9 -DB1C6610173043F2B1B046A87CB974DE2111867EFF48744B09EE03E706B2349A -DD46B166EB34A1E3B9529D93E3490DD59252986E31DB190BF7181B0BB2EFDE85 -090BC6D860602812B7E427676AEC0983657FCB078A5E109F2EA6CA54C74CD6FF -BDF265D4DF1C616D4D38D4CFA701F4D7DB4E5F5A71FF49F9B803FEF48FB7A12A -47EA1BF744CE1EBE1ECB03082A5A4AF48F51565D3A9AA75DDA3A8A9F07E338A3 -D1D7FD05DD6E5A414BADE9B85CBFE248A67405355663133FF258751B870D2C67 -027F573EDEE10A063527D463E56A915FC85BC040BE2CECE5FC24091BF4032139 -D941E3E2AE0AD04F7F015B74F7E13F8A27122838E5CFC2D7D9616F4BDB8C9A9A -5FF5A0695E27BC9FB79644D78257E15AE2913E85FAA7D8B49A7F867A3FFC61CD -F25A67ABA72FE52DD506104E240301511090E98F3004035C77265A717EE404FE -D8353A33FD271501FCA17BDEE34FDDA68062C5E4210C7F0F3E757BD73F9B2148 -FAA02D5155BA5B2D9B5E8026F3736549327A7878E3E7E3DD58F762A16CFEE342 -563C25EC491CB163FB913CB8174B36CBD786774D326CA5D5BA9BAA4D90B5BB36 -8043F03E135FA03C28F0C0D4661DBD7F183836657FD5DF788D848102C7B1A90E -2E503439DBAA4C9A85526BEFD195309C2432179A8BA015E02E4BBB76D83F6B8F -B79769352A7DB5ABE7B9BDB43F1521489D82406DD6FE62648BB112889DE7C07B -6002D11B70359EFD4AA14021CF2FBC288E8176DAF838D6A77D43A5E1289730F0 -1756B22B134D684DAFF8C0F5A3446EFAD156DFD944DFAE3CDAA5EE535BF135BF -1C64AF97B41AAB3347415DBD952D7338B24F9883ED1AB8B14B8AEAD004A7B884 -C2FC9A2988A5C6B7F4D8275046A14C0EE040CA7E8892D45CA9E7918BFB411858 -F76CF5D170A8C48F24789CC75530198DA4C06EA8F1D619654969A56B76B36278 -B5C4DD208B1D8CE49EC1C0A1742A65DE1B67BA78BA700E3264406B44802F7BCD -A31AE48FC019CBCED968544EE30ED08FF895B66DA547E9027CB8D833518859FF -CE2E34E451165F1D59AB38 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000000000000000000 -cleartomark -%%EndFont -TeXDict begin 55380996 39158280 1000 600 600 (orgcard.dvi) -@start /Fa 242[61 13[{ TeXbbad153fEncoding ReEncodeFont }1 -49.8132 /CMSY6 rf /Fb 134[32 1[43 32 34 24 24 24 1[34 -30 34 50 18 32 1[18 34 30 19 27 34 27 34 30 13[34 44 -1[41 47 1[54 3[22 1[47 39 2[43 1[45 6[18 3[30 1[30 1[30 -1[30 1[18 21 18 44[{ TeXf7b6d320Encoding ReEncodeFont }40 -49.8132 /CMR6 rf /Fc 135[33 3[24 29 4[40 58 18 2[22 36 -2[33 36 33 33 36 50[22 46[{ TeX74afc74cEncoding ReEncodeFont }14 -66.4176 /CMTI8 rf /Fd 134[43 43 59 43 45 32 32 34 1[45 -41 45 68 23 43 1[23 45 41 25 37 45 36 45 40 10[61 1[57 -45 61 61 55 61 63 77 49 2[30 63 2[53 1[59 8[23 12[27 -32[45 47 11[{ TeXf7b6d320Encoding ReEncodeFont }41 66.4176 -/CMBX8 rf /Fe 219[71 2[71 32[55{ TeXbbad153fEncoding ReEncodeFont }3 -66.4176 /CMSY8 rf /Ff 203[33 33 33 33 49[{ - TeXf7b6d320Encoding ReEncodeFont }4 58.1154 /CMR7 rf -/Fg 129[35 1[35 1[35 35 35 35 35 35 35 35 35 35 35 35 -35 35 35 35 35 35 35 35 35 35 35 35 35 35 1[35 35 35 -35 35 1[35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 -35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 -3[35 1[35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 -35 35 35 33[{ TeX09fbbfacEncoding ReEncodeFont }86 66.4176 -/CMTT8 rf /Fh 134[60 60 83 1[64 45 45 47 1[64 57 64 95 -32 60 1[32 1[57 1[53 64 51 64 56 10[87 88 80 64 86 2[86 -90 109 69 2[43 1[90 72 75 88 83 1[87 19[38 45[{ - TeXf7b6d320Encoding ReEncodeFont }37 99.6264 /CMBX10 -rf /Fi 133[31 37 37 51 37 39 27 28 28 37 39 35 39 59 -20 37 22 20 39 35 22 31 39 31 39 35 2[35 1[35 3[53 72 -53 53 51 39 52 2[55 53 65 44 55 1[25 53 55 46 48 54 51 -50 53 6[20 5[35 35 35 35 35 35 20 24 20 55 35 27 27 20 -2[35 59 35 20 19[39 39 41 11[{ TeXf7b6d320Encoding ReEncodeFont }71 -66.4176 /CMR8 rf /Fj 141[57 2[69 76 6[69 42 63 76 61 -1[67 14[103 2[103 1[131 9[99 16[69 69 1[69 1[46 3[53 -53 40[{ TeXf7b6d320Encoding ReEncodeFont }19 119.552 -/CMBX10 rf end -%%EndProlog -%%BeginSetup -%%Feature: *Resolution 600dpi -TeXDict begin -%%PaperSize: A4 - @landscape end -%%EndSetup -%%Page: 1 1 -TeXDict begin @landscape 1 0 bop -169 -357 a Fj(Org-Mo)t(de)45 -b(Reference)h(Card)g(\(1/2\))546 -242 y Fi(\(for)23 b(v)n(ersion)h -(4.04\))-150 -39 y Fh(Getting)37 b(Started)-150 89 y -Fg(\(add-to-list)i('auto-mode-alist)h('\("\\\\.org$")e(.)e -(org-mode\)\))-150 172 y(\(define-key)i(global-map)h("\\C-cl")e -('org-store-link\))1504 148 y Ff(2)-150 254 y Fg(\(define-key)h -(global-map)h("\\C-ca")e('org-agenda\))1364 231 y Ff(2)-150 -352 y Fi(F)-6 b(or)23 b(the)i(man)n(y)f(customization)h(options)g(try) -68 b Fg(M-x)36 b(org-customize)-150 421 y Fi(T)-6 b(o)24 -b(read)g(the)g(on-line)g(do)r(cumen)n(tation)i(try)111 -b Fg(M-x)36 b(org-info)-150 622 y Fh(Visibilit)m(y)h(Cycling)-150 -775 y Fi(rotate)25 b(curren)n(t)f(subtree)g(b)r(et)n(w)n(een)i(states) -291 b Fg(TAB)-150 845 y Fi(rotate)25 b(en)n(tire)f(bu\013er)g(b)r(et)n -(w)n(een)h(states)384 b Fg(S-TAB)-150 914 y Fi(sho)n(w)24 -b(the)g(whole)g(\014le)854 b Fg(C-c)36 b(C-a)-150 1095 -y Fh(Motion)-150 1247 y Fi(next)25 b(heading)1043 b Fg(C-c)36 -b(C-n)-150 1317 y Fi(previous)24 b(heading)921 b Fg(C-c)36 -b(C-p)-150 1387 y Fi(next)25 b(heading,)f(same)g(lev)n(el)685 -b Fg(C-c)36 b(C-f)-150 1456 y Fi(previous)24 b(heading,)g(same)g(lev)n -(el)563 b Fg(C-c)36 b(C-b)-150 1526 y Fi(bac)n(kw)n(ard)25 -b(to)f(higher)g(lev)n(el)f(heading)424 b Fg(C-c)36 b(C-u)-150 -1596 y Fi(jump)23 b(to)i(another)f(place)h(in)e(do)r(cumen)n(t)350 -b Fg(C-c)36 b(C-j)-150 1797 y Fh(Structure)g(Editing)-150 -1950 y Fi(insert)23 b(new)i(heading/item)g(at)f(curren)n(t)g(lev)n(el) -195 b Fg(M-RET)-150 2019 y Fi(insert)23 b(new)i(TODO)e(en)n(try)700 -b Fg(M-S-RET)-150 2117 y Fi(promote)24 b(curren)n(t)h(heading)f(up)g -(one)h(lev)n(el)285 b Fg(M-LEFT)-150 2187 y Fi(demote)25 -b(curren)n(t)f(heading)h(do)n(wn)f(one)g(lev)n(el)233 -b Fg(M-RIGHT)-150 2256 y Fi(promote)24 b(curren)n(t)h(subtree)f(up)g -(one)g(lev)n(el)301 b Fg(M-S-LEFT)-150 2326 y Fi(demote)25 -b(curren)n(t)f(subtree)h(do)n(wn)f(one)g(lev)n(el)248 -b Fg(M-S-RIGHT)-150 2424 y Fi(mo)n(v)n(e)24 b(subtree/list)h(item)e(up) -642 b Fg(M-S-UP)-150 2493 y Fi(mo)n(v)n(e)24 b(subtree/list)h(item)e -(do)n(wn)558 b Fg(M-S-DOWN)-150 2563 y Fi(kill)23 b(subtree)1097 -b Fg(C-c)36 b(C-x)g(C-w)-150 2633 y Fi(cop)n(y)25 b(subtree)1052 -b Fg(C-c)36 b(C-x)g(M-w)-150 2703 y Fi(y)n(ank)25 b(subtree)1046 -b Fg(C-c)36 b(C-x)g(C-y)-150 2800 y Fi(arc)n(hiv)n(e)24 -b(subtree)976 b Fg(C-c)36 b($)-150 2870 y Fi(T)-6 b(o)24 -b(set)g(arc)n(hiv)n(e)g(lo)r(cation)h(for)e(curren)n(t)h(\014le,)f(add) -h(a)g(line)f(lik)n(e)1495 2846 y Ff(3)1533 2870 y Fi(:)-150 -2944 y Fg(#+ARCHIVE:)38 b(archfile::*)h(Archived)e(Tasks)-150 -3124 y Fh(Filtering)g(and)g(Sparse)g(T)-10 b(rees)-150 -3277 y Fi(sho)n(w)24 b(sparse)f(tree)i(for)d(all)h(matc)n(hes)i(of)f(a) -g(regexp)92 b Fg(C-c)36 b(/)-150 3346 y Fi(view)24 b(TODO's)e(in)i -(sparse)f(tree)580 b Fg(C-c)36 b(C-v)-150 3427 y Fi(global)24 -b(TODO)f(list)g(in)g(agenda)i(mo)r(de)389 b Fg(C-c)36 -b(t)1466 3403 y Ff(2)-150 3497 y Fi(create)25 b(sparse)e(tree)i(with)e -(all)g(deadlines)i(due)204 b Fg(C-c)36 b(C-w)-150 3566 -y Fi(time)24 b(sorted)g(view)g(of)f(curren)n(t)h(org)g(\014le)367 -b Fg(C-c)36 b(C-r)-150 3765 y Fh(T)-10 b(ags)-150 3917 -y Fi(set)24 b(tags)h(for)d(curren)n(t)j(heading)589 b -Fg(C-c)36 b(C-c)-150 3987 y Fi(realign)23 b(tags)i(in)e(all)g(headings) -613 b Fg(C-u)36 b(C-c)g(C-c)-150 4057 y Fi(create)25 -b(sparse)e(tree)i(with)e(matc)n(hing)i(tags)285 b Fg(C-c)36 -b(\\)-150 4126 y Fi(globally)24 b(\(agenda\))i(matc)n(h)e(tags)h(at)f -(cursor)243 b Fg(C-c)36 b(C-o)2046 -364 y Fh(TODO)i(Items)2046 --215 y Fi(rotate)25 b(the)f(state)h(of)f(the)g(curren)n(t)g(item)354 -b Fg(C-c)36 b(C-t)2046 -145 y Fi(view)24 b(TODO)f(items)g(in)h(a)g -(sparse)f(tree)380 b Fg(C-c)36 b(C-v)2046 -75 y Fi(view)24 -b(3rd)f(TODO)g(k)n(eyw)n(ord's)h(sparse)g(tree)258 b -Fg(C-3)36 b(C-c)g(C-v)2046 22 y Fi(set)24 b(the)h(priorit)n(y)e(of)g -(the)i(curren)n(t)f(item)369 b Fg(C-c)36 b(,)g([ABC])2046 -91 y Fi(remo)n(v)n(e)24 b(priorit)n(y)f(co)r(okie)i(from)d(curren)n(t)j -(item)179 b Fg(C-c)36 b(,)g(SPC)2046 172 y Fi(raise)23 -b(priorit)n(y)g(of)g(curren)n(t)i(item)557 b Fg(S-UP)3626 -148 y Ff(4)2046 252 y Fi(lo)n(w)n(er)23 b(priorit)n(y)g(of)h(curren)n -(t)g(item)538 b Fg(S-DOWN)3696 229 y Ff(4)2046 384 y -Fi(p)r(er-\014le)23 b(TODO)g(w)n(ork\015o)n(w)h(states:)33 -b(add)24 b(line\(s\))g(lik)n(e)3505 360 y Ff(3)3542 384 -y Fi(:)2046 457 y Fg(#+SEQ_TODO:)38 b(TODO)f(PROCRASTINATE)i(BLUFF)e -(DONE)2046 537 y Fi(p)r(er-\014le)23 b(TODO)g(k)n(eyw)n(ords:)32 -b(add)24 b(line\(s\))g(lik)n(e)3314 513 y Ff(3)3351 537 -y Fi(:)2046 610 y Fg(#+TYP_TODO:)38 b(Phil)f(home)f(work)h(DONE)2046 -799 y Fh(Timestamps)2046 949 y Fi(prompt)24 b(for)f(date)i(and)f -(insert)f(timestamp)266 b Fg(C-c)36 b(.)2046 1018 y Fi(lik)n(e)23 -b Fg(C-c)i Fi(.)31 b(but)24 b(insert)g(date)g(and)h(time)e(format)144 -b Fg(C-u)36 b(C-c)g(.)2046 1088 y Fi(Lik)n(e)24 b Fg(C-c)36 -b(.)24 b Fi(but)g(mak)n(e)g(stamp)h(inactiv)n(e)322 b -Fg(C-c)36 b(!)2046 1158 y Fi(insert)23 b(DEADLINE)h(timestamp)516 -b Fg(C-c)36 b(C-d)2046 1228 y Fi(insert)23 b(SCHEDULED)h(timestamp)451 -b Fg(C-c)36 b(C-s)2046 1297 y Fi(create)25 b(sparse)e(tree)i(with)e -(all)g(deadlines)i(due)204 b Fg(C-c)36 b(C-w)2046 1367 -y Fi(the)25 b(time)e(b)r(et)n(w)n(een)j(2)e(dates)g(in)g(a)f(time)h -(range)172 b Fg(C-c)36 b(C-y)2046 1449 y Fi(c)n(hange)25 -b(timestamp)g(at)f(cursor)f(b)n(y)h Fe(\000)p Fi(1)g(da)n(y)238 -b Fg(S-LEFT)3696 1426 y Ff(4)2046 1530 y Fi(c)n(hange)25 -b(timestamp)g(at)f(cursor)f(b)n(y)h(+1)g(da)n(y)238 b -Fg(S-RIGHT)3731 1506 y Ff(4)2046 1610 y Fi(c)n(hange)25 -b(y)n(ear/mon)n(th/da)n(y)i(at)d(cursor)f(b)n(y)h Fe(\000)p -Fi(1)189 b Fg(S-DOWN)3696 1587 y Ff(4)2046 1694 y Fi(c)n(hange)25 -b(y)n(ear/mon)n(th/da)n(y)i(at)d(cursor)f(b)n(y)h(+1)189 -b Fg(S-UP)3626 1671 y Ff(4)2046 1764 y Fi(access)25 b(the)f(calendar)g -(for)f(the)i(curren)n(t)f(date)221 b Fg(C-c)36 b(>)2046 -1834 y Fi(insert)23 b(timestamp)i(matc)n(hing)g(date)f(in)g(calendar)89 -b Fg(C-c)36 b(<)2046 1904 y Fi(access)25 b(agenda)g(for)e(curren)n(t)h -(date)507 b Fg(C-c)36 b(C-o)2046 1973 y Fi(Select)25 -b(date)g(while)e(prompted)598 b Fg(mouse-1/RET)2046 2169 -y Fh(Links)2046 2318 y Fi(globally)24 b(store)g(link)f(to)h(the)h -(curren)n(t)f(lo)r(cation)166 b Fg(C-c)36 b(l)3662 2295 -y Ff(2)2046 2388 y Fi(insert)23 b(a)h(link)f(\(T)-6 b(AB)24 -b(completes)h(stored)f(links\))138 b Fg(C-c)36 b(C-l)2046 -2458 y Fi(insert)23 b(\014le)h(link)f(with)h(\014le)g(name)g -(completion)192 b Fg(C-u)36 b(C-c)g(C-l)2046 2555 y Fi(op)r(en)25 -b(link)e(at)h(p)r(oin)n(t)884 b Fg(C-c)36 b(C-o)2046 -2624 y Fi(op)r(en)25 b(\014le)e(links)g(in)h(emacs)722 -b Fg(C-u)36 b(C-c)g(C-o)2046 2694 y Fi(op)r(en)25 b(link)e(at)h(p)r -(oin)n(t)884 b Fg(mouse-2)2046 2764 y Fi(op)r(en)25 b(\014le)e(links)g -(in)h(emacs)722 b Fg(mouse-3)2046 2861 y Fd(Link)27 b(t)n(yp)r(es)2046 -2957 y Fg(*CamelCaseWord)950 b Fi(searc)n(h)24 b(headline)2046 -3027 y Fg(CamelCaseWord)985 b Fi(searc)n(h)24 b(in)f(bu\013er)2046 -3097 y Fg()282 -b Fi(\014le,)23 b(absolute)2046 3167 y Fg()670 -b Fi(\014le,)23 b(relativ)n(e)2046 3236 y Fg()599 b Fi(\014le)19 b(with)g(line)g(nr.)2046 3306 y -Fg()211 -b Fi(searc)n(h)24 b(headline)2046 3376 y Fg()453 b Fi(searc)n(h)24 b(string)2046 3446 -y Fg()423 b Fi(searc)n(h)24 -b(regexp)2046 3515 y Fg()247 -b Fi(on)24 b(the)h(w)n(eb)2046 3585 y Fg() -564 b Fi(EMail)23 b(address)2046 3655 y Fg()845 -b Fi(Usenet)25 b(group)2046 3725 y Fg()631 b Fi(BBDB)23 b(p)r(erson)2046 3794 y -Fg()877 b Fi(shell)23 b(command)2046 -3864 y Fg()1020 b Fi(GNUS)24 b(group)2046 -3934 y Fg()915 b Fi(GNUS)24 b(message)2046 -4004 y Fg()1055 b Fi(VM)23 b(folder)2046 4073 -y Fg()950 b Fi(VM)23 b(message)2046 4143 -y(W)-6 b(anderlust)25 b Fg()h Fi(and)e(RMAIL)f -Fg()k Fi(lik)n(e)c(VM)4242 -364 y Fh(T)-10 -b(ables)4242 -263 y Fd(Creating)25 b(a)i(table)4242 -178 -y Fi(insert)c(a)h(new)g(Org-mo)r(de)g(table)330 b Fg(M-x)36 -b(org-table-create)4242 -108 y Fi(...)30 b(or)23 b(just)h(start)g(t)n -(yping,)g(e.g.)173 b Fg(|Name|Phone|Age)39 b(RET)d(|-)g(TAB)4242 --39 y Fi(con)n(v)n(ert)25 b(region)f(to)g(table)741 b -Fg(C-c)36 b(C-c)4242 31 y Fi(...)30 b(separator)24 b(at)h(least)f(3)g -(spaces)537 b Fg(C-3)36 b(C-c)g(C-c)4242 116 y Fd(Commands)26 -b(a)n(v)-5 b(ailable)25 b(inside)j(tables)4242 201 y -Fi(The)17 b(follo)n(wing)f(commands)i(w)n(ork)f(when)g(the)h(cursor)e -(is)g Fc(inside)k(a)f(table)p Fi(.)4242 270 y(Outside)24 -b(of)e(tables,)i(the)g(same)f(k)n(eys)h(ma)n(y)f(ha)n(v)n(e)h(other)g -(functionalit)n(y)-6 b(.)4242 355 y Fd(Re-aligning)25 -b(and)i(\014eld)h(motion)4242 440 y Fi(re-align)22 b(the)i(table)g -(without)g(mo)n(ving)g(the)g(cursor)70 b Fg(C-c)36 b(C-c)4242 -510 y Fi(re-align)23 b(the)h(table,)g(mo)n(v)n(e)h(to)f(next)h(\014eld) -311 b Fg(TAB)4242 579 y Fi(mo)n(v)n(e)24 b(to)h(previous)e(\014eld)762 -b Fg(S-TAB)4242 649 y Fi(re-align)23 b(the)h(table,)g(mo)n(v)n(e)h(to)f -(next)h(ro)n(w)328 b Fg(RET)4242 734 y Fd(Ro)n(w)26 b(and)h(column)g -(editing)4242 819 y Fi(mo)n(v)n(e)d(the)h(curren)n(t)f(column)g(left) -544 b Fg(M-LEFT)4242 888 y Fi(mo)n(v)n(e)24 b(the)h(curren)n(t)f -(column)g(righ)n(t)497 b Fg(M-RIGHT)4242 958 y Fi(kill)23 -b(the)h(curren)n(t)g(column)731 b Fg(M-S-LEFT)4242 1028 -y Fi(insert)23 b(new)i(column)f(to)g(left)f(of)h(cursor)f(p)r(osition) -104 b Fg(M-S-RIGHT)4242 1112 y Fi(mo)n(v)n(e)24 b(the)h(curren)n(t)f -(ro)n(w)f(up)678 b Fg(M-UP)4242 1182 y Fi(mo)n(v)n(e)24 -b(the)h(curren)n(t)f(ro)n(w)f(do)n(wn)594 b Fg(M-DOWN)4242 -1252 y Fi(kill)23 b(the)h(curren)n(t)g(ro)n(w)g(or)f(horizon)n(tal)h -(line)291 b Fg(M-S-UP)4242 1322 y Fi(insert)23 b(new)i(ro)n(w)e(ab)r(o) -n(v)n(e)i(the)f(curren)n(t)g(ro)n(w)285 b Fg(M-S-DOWN)4242 -1391 y Fi(insert)23 b(horizon)n(tal)i(line)e(b)r(elo)n(w)h(the)h -(curren)n(t)f(ro)n(w)100 b Fg(C-c)36 b(-)4242 1461 y -Fi(insert)23 b(horizon)n(tal)i(line)e(ab)r(o)n(v)n(e)i(the)g(curren)n -(t)f(ro)n(w)100 b Fg(C-u)36 b(C-c)g(-)4242 1531 y Fi(sort)24 -b(lines)f(in)g(region)867 b Fg(C-c)36 b(^)4242 1616 y -Fd(Regions)4242 1700 y Fi(cut)25 b(rectangular)f(region)758 -b Fg(C-c)36 b(C-x)g(C-w)4242 1770 y Fi(cop)n(y)25 b(rectangular)f -(region)715 b Fg(C-c)36 b(C-x)g(M-w)4242 1840 y Fi(paste)25 -b(rectangular)f(region)695 b Fg(C-c)36 b(C-x)g(C-y)4242 -1910 y Fi(\014ll)23 b(paragraph)h(across)g(selected)h(cells)399 -b Fg(C-c)36 b(C-q)4242 1994 y Fd(Calculations)4242 2079 -y Fi(These)24 b(need)h(the)f(Emacs)g(calc)g(pac)n(k)l(age)i(installed.) -4242 2164 y(set)e(and)g(ev)l(al)g(column)g(form)n(ula)567 -b Fg(C-c)36 b(=)4242 2234 y Fi(set)24 b(and)g(ev)l(al)g(named-\014eld)h -(form)n(ula)433 b Fg(C-u)36 b(C-c)g(=)4242 2303 y Fi(edit)24 -b(form)n(ulas)f(in)g(separate)i(bu\013er)473 b Fg(C-c)36 -b(')4242 2373 y Fi(re-apply)23 b(all)g(stored)i(equations)g(to)f -(curren)n(t)g(line)96 b Fg(C-c)36 b(*)4242 2443 y Fi(re-apply)23 -b(all)g(stored)i(equations)g(to)f(en)n(tire)g(table)101 -b Fg(C-u)36 b(C-c)g(*)4242 2527 y(TAB)p Fi(,)30 b Fg(RET)f -Fi(and)f Fg(C-c)37 b(C-c)28 b Fi(trigger)h(automatic)g(recalculation)h -(in)d(lines)4242 2597 y(starting)d(with:)31 b Fg(|)36 -b(#)f(|)p Fi(.)4242 2682 y(rotate)25 b(calculation)g(mark)e(through)i -(#)e(*)h(!)31 b(^)p 5487 2682 22 4 v 49 w($)115 b Fg(C-#)4242 -2767 y Fi(displa)n(y)24 b(column)g(n)n(um)n(b)r(er)f(cursor)h(is)f(in) -354 b Fg(C-c)36 b(?)4242 2836 y Fi(sum)23 b(n)n(um)n(b)r(ers)h(in)f -(curren)n(t)i(column/rectangle)143 b Fg(C-c)36 b(+)4242 -2921 y Fi(cop)n(y)25 b(do)n(wn)f(with)g(incremen)n(t)625 -b Fg(S-RET)5857 2897 y Ff(4)4242 3005 y Fi(A)25 b(form)n(ula)f(can)i -(also)f(b)r(e)h(t)n(yp)r(ed)g(directly)g(in)n(to)f(in)n(to)h(a)f -(\014eld)g(and)h(will)4242 3075 y(executed)31 b(b)n(y)e -Fg(TAB)p Fi(,)h Fg(RET)g Fi(and)f Fg(C-c)36 b(C-c)p Fi(.)47 -b(A)28 b(leading)h Fg(=)g Fi(in)n(tro)r(duces)h(a)4242 -3145 y(column)24 b(form)n(ula,)e Fg(:=)j Fi(a)e(named-\014eld)i(form)n -(ula.)4242 3230 y(Example:)31 b(Add)24 b(Col1)g(and)g(Col2)522 -b Fg(=$1+$2)4242 3299 y Fi(...)30 b(with)24 b(prin)n(tf)f(format)g(sp)r -(eci\014cation)387 b Fg(=$1+$2;\045.2f)4242 3369 y Fi(...)30 -b(with)24 b(constan)n(ts)h(from)e(constan)n(ts.el)352 -b Fg(=$1/$c/$cm)4242 3439 y Fi(sum)23 b(from)g(3rd)h(hline)f(ab)r(o)n -(v)n(e)i(to)f(here)411 b Fg(:=vsum\(&III\))4242 3508 -y Fi(apply)24 b(curren)n(t)g(column)g(form)n(ula)518 -b Fg(=)4242 3593 y Fd(Miscellaneous)4242 3678 y Fi(toggle)25 -b(visibilit)n(y)d(of)i(v)n(ertical)g(lines)474 b Fg(C-c)36 -b(|)4242 3748 y Fi(exp)r(ort)25 b(as)e(tab-separated)j(\014le)370 -b Fg(M-x)36 b(org-table-export)4242 3817 y Fi(imp)r(ort)23 -b(tab-separated)j(\014le)447 b Fg(M-x)36 b(org-table-import)4242 -3902 y Fd(T)-7 b(ables)27 b(created)f(with)h(the)g Fg(table.el)i -Fd(pac)n(k)-5 b(age)4242 3987 y Fi(insert)23 b(a)h(new)g -Fg(table.el)i Fi(table)582 b Fg(C-c)36 b(~)4242 4057 -y Fi(recognize)25 b(existing)f(table.el)g(table)474 b -Fg(C-c)36 b(C-c)4242 4126 y Fi(con)n(v)n(ert)25 b(table)f(\(Org-mo)r -(de)g Fe($)f Fi(table.el\))312 b Fg(C-c)36 b(~)p eop -end -%%Page: 2 2 -TeXDict begin @landscape 2 1 bop -169 -357 a Fj(Org-Mo)t(de)45 -b(Reference)h(Card)g(\(2/2\))546 -242 y Fi(\(for)23 b(v)n(ersion)h -(4.04\))-150 -36 y Fh(Agenda)37 b(Views)-150 120 y Fi(add/mo)n(v)n(e)25 -b(curren)n(t)f(\014le)g(to)g(fron)n(t)g(of)f(agenda)197 -b Fg(C-c)36 b([)-150 190 y Fi(remo)n(v)n(e)24 b(curren)n(t)g(\014le)g -(from)f(y)n(our)g(agenda)299 b Fg(C-c)36 b(])-150 259 -y Fi(cycle)24 b(through)h(agenda)g(\014le)f(list)551 -b Fg(C-,)-150 368 y Fi(compile)24 b(agenda)h(for)e(the)h(curren)n(t)g -(w)n(eek)320 b Fg(C-c)36 b(a)g(a)1537 345 y Ff(2)-150 -449 y Fi(compile)24 b(global)g(TODO)f(list)640 b Fg(C-c)36 -b(a)g(t)1537 425 y Ff(2)-150 529 y Fi(compile)24 b(TODO)f(list)g(for)g -(sp)r(eci\014c)h(k)n(eyw)n(ord)218 b Fg(C-c)36 b(a)g(T)1537 -506 y Ff(2)-150 610 y Fi(matc)n(h)25 b(tags)f(in)f(agenda)j(\014les)637 -b Fg(C-c)36 b(a)g(m)1537 586 y Ff(2)-150 680 y Fi(agenda)25 -b(for)e(date)i(at)f(cursor)661 b Fg(C-c)36 b(C-o)-150 -749 y Fi(sho)n(w)24 b(timeline)f(of)h(curren)n(t)g(org)f(\014le)458 -b Fg(C-c)36 b(C-r)-150 882 y Fi(T)-6 b(o)24 b(set)g(categories,)h(add)f -(lines)f(lik)n(e)814 859 y Ff(3)851 882 y Fi(:)-150 957 -y Fg(#+CATEGORY:)38 b(MyCateg)-150 1055 y Fd(Commands)26 -b(a)n(v)-5 b(ailable)25 b(in)i(an)g(agenda)g(bu\013er)-150 -1153 y(View)g(Org)g(\014le)-150 1252 y Fi(sho)n(w)d(original)f(lo)r -(cation)h(of)g(item)524 b Fg(SPC)-150 1321 y Fi(...)30 -b(also)24 b(a)n(v)l(ailable)g(with)781 b Fg(mouse-3)-150 -1391 y Fi(sho)n(w)24 b(and)g(recen)n(ter)h(windo)n(w)626 -b Fg(L)-150 1461 y Fi(goto)25 b(original)e(lo)r(cation)h(in)g(other)g -(windo)n(w)260 b Fg(TAB)-150 1531 y Fi(...)30 b(also)24 -b(a)n(v)l(ailable)g(with)781 b Fg(mouse-2)-150 1600 y -Fi(goto)25 b(original)e(lo)r(cation,)h(delete)h(other)f(windo)n(ws)91 -b Fg(RET)-150 1670 y Fi(toggle)25 b(follo)n(w-mo)r(de)861 -b Fg(f)-150 1768 y Fd(Change)27 b(displa)n(y)-150 1867 -y Fi(delete)e(other)f(windo)n(ws)791 b Fg(o)-150 1937 -y Fi(switc)n(h)24 b(to)g(daily)g(/)g(w)n(eekly)g(view)534 -b Fg(d)36 b(/)f(w)-150 2006 y Fi(toggle)25 b(inclusion)e(of)h(diary)f -(en)n(tries)473 b Fg(D)-150 2076 y Fi(toggle)25 b(time)f(grid)f(for)g -(daily)g(sc)n(hedule)388 b Fg(g)-150 2146 y Fi(toggle)25 -b(displa)n(y)e(of)h(logb)r(o)r(ok)g(en)n(tries)446 b -Fg(l)-150 2215 y Fi(refresh)23 b(agenda)i(bu\013er)f(with)g(an)n(y)g(c) -n(hanges)239 b Fg(r)-150 2285 y Fi(displa)n(y)24 b(the)g(follo)n(wing)f -Fg(org-agenda-ndays)221 b(RIGHT)-150 2355 y Fi(displa)n(y)24 -b(the)g(previous)g Fg(org-agenda-ndays)238 b(LEFT)-150 -2425 y Fi(goto)25 b(to)r(da)n(y)1110 b Fg(.)-150 2523 -y Fd(Remote)27 b(editing)-150 2621 y Fi(digit)d(argumen)n(t)984 -b Fg(0-9)-150 2691 y Fi(c)n(hange)25 b(state)g(of)f(curren)n(t)g(TODO)f -(item)333 b Fg(t)-150 2761 y Fi(sho)n(w)24 b(tags)g(of)g(curren)n(t)g -(headline)536 b Fg(T)-150 2831 y Fi(set)24 b(tags)h(for)d(curren)n(t)j -(headline)573 b Fg(:)-150 2900 y Fi(set)24 b(priorit)n(y)f(of)g(curren) -n(t)i(item)612 b Fg(p)-150 2983 y Fi(raise/lo)n(w)n(er)23 -b(priorit)n(y)g(of)h(curren)n(t)g(item)361 b Fg(S-UP/DOWN)1605 -2959 y Ff(4)-150 3052 y Fi(displa)n(y)24 b(w)n(eigh)n(ted)h(priorit)n -(y)e(of)g(curren)n(t)h(item)189 b Fg(P)-150 3133 y Fi(c)n(hange)25 -b(timestamp)g(to)f(one)g(da)n(y)h(earlier/later)139 b -Fg(S-LEFT/RIGHT)1710 3109 y Ff(4)-150 3203 y Fi(c)n(hange)25 -b(timestamp)g(to)f(to)r(da)n(y)598 b Fg(>)-150 3272 y -Fi(insert)23 b(new)i(en)n(try)f(in)n(to)g(diary)612 b -Fg(i)-150 3371 y Fd(Calendar)26 b(commands)-150 3469 -y Fi(\014nd)e(agenda)h(cursor)f(date)g(in)g(calendar)350 -b Fg(c)-150 3539 y Fi(compute)25 b(agenda)g(for)e(calendar)i(cursor)e -(date)180 b Fg(c)-150 3608 y Fi(sho)n(w)24 b(phases)g(of)f(the)i(mo)r -(on)669 b Fg(M)-150 3678 y Fi(sho)n(w)24 b(sunrise/sunset)g(times)636 -b Fg(S)-150 3748 y Fi(sho)n(w)24 b(holida)n(ys)1014 b -Fg(H)-150 3818 y Fi(con)n(v)n(ert)25 b(date)g(to)f(other)g(calendars) -478 b Fg(C)-150 3916 y Fd(Quit)27 b(and)g(Exit)-150 4014 -y Fi(quit)d(agenda,)h(remo)n(v)n(e)f(agenda)h(bu\013er)376 -b Fg(q)-150 4084 y Fi(exit)24 b(agenda,)h(remo)n(v)n(e)f(all)f(agenda)i -(bu\013ers)258 b Fg(x)2046 -364 y Fh(Exp)s(orting)2046 --229 y Fi(Exp)r(orting)32 b(creates)g(\014les)g(with)f(extensions)i -Fc(.txt)k Fi(and)32 b Fc(.html)38 b Fi(in)31 b(the)2046 --159 y(curren)n(t)24 b(directory)-6 b(.)2046 -66 y(exp)r(ort)25 -b(as)e(ASCI)r(I)i(\014le)820 b Fg(C-c)36 b(C-x)g(a)2046 -3 y Fi(exp)r(ort)25 b(visible)e(text)i(only)e(\(e.g.)32 -b(for)23 b(prin)n(ting\))152 b Fg(C-c)36 b(C-x)g(v)2046 -73 y Fi(exp)r(ort)25 b(as)e(HTML)g(\014le)804 b Fg(C-c)36 -b(C-x)g(h)2046 143 y Fi(exp)r(ort)25 b(as)e(HTML)g(and)h(op)r(en)h(in)e -(bro)n(wser)266 b Fg(C-c)36 b(C-x)g(b)2046 213 y Fi(pre\014x)24 -b(arg)g(sets)g(n)n(b.)31 b(of)23 b(headline)i(lev)n(els,)e(e.g.)182 -b Fg(C-3)36 b(C-c)g(C-x)g(h)2046 306 y Fi(exp)r(ort)25 -b(as)e(iCalendar)h(\014le)718 b Fg(C-c)36 b(C-x)g(i)2046 -376 y Fi(exp)r(ort)25 b(all)e(agenda)i(\014les)e(as)h(iCalendar)f -(\014les)212 b Fg(C-c)36 b(C-x)g(C-i)2046 445 y Fi(com)n(bine)24 -b(all)f(agenda)j(\014les)d(to)h(single)g(iCal)f(\014le)163 -b Fg(C-c)36 b(C-x)g(C-c)2046 538 y Fi(insert)23 b(template)j(of)d(exp)r -(ort)h(options)423 b Fg(C-c)36 b(C-x)g(t)2046 632 y Fi(toggle)25 -b(\014xed)f(width)g(for)f(en)n(try)h(or)g(region)295 -b Fg(C-c)36 b(:)2046 725 y Fd(HTML)27 b(formatting)2046 -818 y Fi(mak)n(e)d(w)n(ords)g Fd(b)r(old)897 b Fg(*bold*)2046 -888 y Fi(mak)n(e)24 b(w)n(ords)g Fc(italic)898 b Fg(/italic/)2046 -957 y Fi(mak)n(e)24 b(w)n(ords)g(underlined)p 2433 970 -326 4 v 728 w Fg(_underlined_)2046 1027 y Fi(sub-)f(and)i(sup)r -(erscripts)781 b Fg(x^3,)36 b(J_dust)2046 1097 y Fi(T)2085 -1111 y(E)2124 1097 y(X-lik)n(e)23 b(macros)940 b Fg(\\alpha,)37 -b(\\to)2046 1167 y Fi(t)n(yp)r(eset)25 b(lines)f(in)f(\014xed)h(width)g -(fon)n(t)460 b Fg(start)37 b(with)f(:)2046 1236 y Fi(tables)24 -b(are)g(exp)r(orted)h(as)f(HTML)f(tables)321 b Fg(start)37 -b(with)f(|)2046 1306 y Fi(links)23 b(b)r(ecome)i(HTML)e(links)640 -b Fg(http:...)73 b(etc)2046 1376 y Fi(include)24 b(h)n(tml)g(tags)905 -b Fg(@...@)2046 1469 y Fd(Exp)r(ort)27 b(options)2046 -1562 y Fi(Include)20 b(additional)f(information)g(for)f(exp)r(ort)i(b)n -(y)f(putting)h(these)g(an)n(y-)2046 1632 y(where)g(in)f(the)h(org)g -(\014le.)30 b(Use)19 b Fg(M-TAB)i Fi(completion)f(to)g(mak)n(e)h(sure)e -(to)h(get)2046 1702 y(the)i(righ)n(t)e(k)n(eyw)n(ords.)31 -b Fg(M-TAB)22 b Fi(again)f(just)g(after)g(k)n(eyw)n(ord)g(is)g -(complete)2046 1771 y(inserts)i(examples.)2046 1864 y(the)i(title)f(to) -g(b)r(e)g(sho)n(wn)797 b Fg(#+TITLE:)2046 1934 y Fi(the)25 -b(author)1115 b Fg(#+AUTHOR:)2046 2004 y Fi(authors)24 -b(email)f(address)769 b Fg(#+EMAIL:)2046 2074 y Fi(language)25 -b(co)r(de)g(for)e(h)n(tml)732 b Fg(#+LANGUAGE:)2046 2143 -y Fi(free)23 b(text)i(description)f(of)g(\014le)626 b -Fg(#+TEXT:)2046 2213 y Fi(...)30 b(whic)n(h)24 b(can)g(carry)g(o)n(v)n -(er)g(m)n(ultiple)f(lines)271 b Fg(#+TEXT:)2046 2283 -y Fi(settings)25 b(for)d(the)j(exp)r(ort)f(pro)r(cess)g(-)f(see)h(b)r -(elo)n(w)145 b Fg(#+OPTIONS:)2046 2376 y Fd(Settings)26 -b(for)h(the)g(OPTIONS)i(line)2046 2469 y Fi(set)24 b(n)n(um)n(b)r(er)g -(of)f(headline)i(lev)n(els)e(for)g(exp)r(ort)219 b Fg(H:2)2046 -2539 y Fi(turn)24 b(on/o\013)h(section)f(n)n(um)n(b)r(ers)577 -b Fg(num:t)2046 2609 y Fi(turn)24 b(on/o\013)h(table)f(of)f(con)n(ten)n -(ts)564 b Fg(toc:t)2046 2678 y Fi(turn)24 b(on/o\013)h(linebreak)f -(preserv)l(ation)395 b Fg(\\n:nil)2046 2748 y Fi(turn)24 -b(on/o\013)h(quoted)g(h)n(tml)f(tags)548 b Fg(@:t)2046 -2818 y Fi(turn)24 b(on/o\013)h(\014xed)f(width)g(sections)464 -b Fg(::t)2046 2888 y Fi(turn)24 b(on/o\013)h(tables)893 -b Fg(|:t)2046 2957 y Fi(turn)20 b(on/o\013)h(T)2444 2971 -y(E)2484 2957 y(X)e(syn)n(tax)i(for)f(sub/sup)r(er-scripts)70 -b Fg(^:t)2046 3027 y Fi(turn)24 b(on/o\013)h(emphasised)f(text)578 -b Fg(*:nil)2046 3097 y Fi(turn)24 b(on/o\013)h(T)2452 -3111 y(E)2491 3097 y(X)e(macros)703 b Fg(TeX:t)2046 3190 -y Fd(Commen)n(ts:)35 b(T)-7 b(ext)27 b(not)f(b)r(eing)i(exp)r(orted) -2046 3283 y Fi(T)-6 b(ext)22 b(b)r(efore)f(the)h(\014rst)f(headline)g -(is)f(not)i(considered)g(part)f(of)g(the)h(do)r(c-)2046 -3353 y(umen)n(t)29 b(and)f(is)f(therefore)h(nev)n(er)g(exp)r(orted.)44 -b(Lines)28 b(starting)g(with)g Fg(#)2046 3423 y Fi(are)j(commen)n(ts)g -(and)h(are)e(not)i(exp)r(orted.)53 b(Subtrees)32 b(whose)f(header)2046 -3492 y(starts)24 b(with)g(COMMENT)e(are)i(nev)n(er)g(exp)r(orted.)2046 -3585 y(toggle)h(COMMENT)d(k)n(eyw)n(ord)j(on)f(en)n(try)285 -b Fg(C-c)36 b(;)2046 3763 y Fh(Completion)2046 3897 y -Fi(In-bu\013er)e(completion)g(completes)h(TODO)d(k)n(eyw)n(ords)i(at)g -(headline)2046 3967 y(start,)19 b(T)-6 b(eX)19 b(macros)f(after)h(\\)p -Fg(\\)p Fi(",)h(option)f(k)n(eyw)n(ords)g(after)f(\\)p -Fg(#-)p Fi(",)i(T)-6 b(A)n(GS)2046 4037 y(after)24 b(\\)p -Fg(:)p Fi(",)g(and)g(dictionary)g(w)n(ords)g(elsewhere.)2046 -4130 y(Complete)h(w)n(ord)e(at)h(p)r(oin)n(t)702 b Fg(M-TAB)4242 --364 y Fh(Calendar)36 b(and)h(Diary)i(In)m(tegration)4242 --208 y Fi(T)-6 b(o)35 b(include)g(en)n(tries)g(from)f(the)i(Emacs)f -(diary)g(in)f(y)n(our)h(Org-mo)r(de)4242 -139 y(agenda:)4242 --40 y Fg(\(setq)i(org-agenda-include-diary)42 b(t\))4242 -58 y Fi(T)-6 b(o)33 b(include)g(the)g(Org-mo)r(de)f(agenda)i(in)e(the)h -(normal)f(diary)-6 b(,)34 b(mak)n(e)4242 128 y(sure)29 -b(y)n(ou're)g(using)g(the)h(fancy)g(diary)f(displa)n(y)g(and)g(in)g -(the)h Fg(~/diary)4242 197 y Fi(\014le)24 b(add)4242 -296 y Fg(&\045\045\(org-diary\))4242 394 y Fi(to)30 b(include)g(all)f -(the)h(\014les)f(listed)h(in)f Fg(org-agenda-files)p -Fi(.)53 b(F)-6 b(or)29 b(more)4242 464 y(selectiv)n(e)c(\014le)e -(inclusion)h(use)g(a)g(line)f(for)g(eac)n(h)i(\014le:)4242 -562 y Fg(&\045\045\(org-diary\))39 b(~/path/to/some/org-fil)q(e.or)q(g) -4242 767 y Fh(Remem)m(b)s(er-mo)s(de)f(In)m(tegration)4242 -923 y Fi(See)32 b(the)g(man)n(ual)g(for)e(ho)n(w)i(to)g(mak)n(e)g -(remem)n(b)r(er.el)f(use)g(Org-mo)r(de)4242 992 y(links)25 -b(and)g(\014les.)36 b(The)25 b(note-\014nishing)h(command)g -Fg(C-c)36 b(C-c)26 b Fi(will)e(\014rst)4242 1062 y(prompt)g(for)f(an)h -(org)f(\014le.)32 b(In)24 b(the)g(\014le,)g(\014nd)g(a)g(lo)r(cation)g -(with:)4242 1160 y(rotate)h(subtree)f(visibilit)n(y)719 -b Fg(TAB)4242 1230 y Fi(next)25 b(heading)1043 b Fg(DOWN)4242 -1300 y Fi(previous)24 b(heading)921 b Fg(UP)4242 1398 -y Fi(Insert)24 b(the)h(note)g(with)e(one)i(of)e(the)i(follo)n(wing:) -4242 1497 y(as)f(sublev)n(el)g(of)f(heading)i(at)f(cursor)468 -b Fg(RET)4242 1566 y Fi(righ)n(t)24 b(here)g(\(cursor)f(not)i(on)f -(heading\))388 b Fg(RET)4242 1636 y Fi(b)r(efore)24 b(curren)n(t)g -(heading)745 b Fg(LEFT)4242 1706 y Fi(after)24 b(curren)n(t)g(heading) -790 b Fg(RIGHT)4242 1776 y Fi(shortcut)20 b(to)f(end)h(of)f(bu\013er)g -(\(cursor)g(at)g(buf-start\))71 b Fg(RET)4242 1845 y -Fi(Ab)r(ort)1256 b Fg(q)4242 2050 y Fh(CUA)38 b(and)f(p)s(c-select)g -(compatibilit)m(y)4242 2206 y Fi(Con\014gure)31 b(the)f(v)l(ariable)g -Fg(org-CUA-compatibility)35 b Fi(to)c(mak)n(e)f(Org-)4242 -2276 y(mo)r(de)38 b(a)n(v)n(oid)g(the)g Fg(S-)i -Fi(bindings)d(used)h(b)n(y)g(these)g(mo)r(des.)4242 2345 -y(When)h(set,)j(Org-mo)r(de)c(will)e(c)n(hange)k(the)f(follo)n(wing)e -(k)n(eybindings)4242 2415 y(\(also)25 b(in)f(the)h(agenda)h(bu\013er,)e -(but)h(not)g(during)f(date)i(selection\).)34 b(See)4242 -2499 y(note)25 b(mark)e(four)4705 2476 y Ff(4)4766 2499 -y Fi(throughout)i(the)g(reference)f(card.)4242 2667 y -Fg(S-UP)142 b Fe(!)35 b Fg(M-p)460 b(S-DOWN)72 b Fe(!)35 -b Fg(M-n)4242 2737 y(S-LEFT)72 b Fe(!)35 b Fg(M--)460 -b(S-RIGHT)37 b Fe(!)e Fg(M-+)4242 2807 y(S-RET)107 b -Fe(!)35 b Fg(C-S-RET)4242 2991 y Fh(Notes)4242 3123 y -Ff(1)4307 3146 y Fi(The)28 b(six)f(autoload)i(forms)e(are)h(only)g -(needed)h(if)e(Org-mo)r(de)g(is)g(not)4242 3216 y(part)d(of)f(Emacs,)h -(or)f(an)h(XEmacs)g(pac)n(k)l(age.)4242 3302 y Ff(2)4313 -3325 y Fi(This)34 b(is)f(only)h(a)h(suggestion)g(for)e(a)h(binding)h -(of)e(this)h(command.)4242 3395 y(Cho)r(ose)24 b(y)n(ou)h(o)n(wn)f(k)n -(ey)g(as)g(sho)n(wn)g(under)g(INST)-6 b(ALLA)g(TION.)4242 -3481 y Ff(3)4300 3504 y Fi(After)21 b(c)n(hanging)h(a)f -Fg(#+KEYWORD)j Fi(line,)d(press)f Fg(C-c)37 b(C-c)21 -b Fi(with)g(the)h(cur-)4242 3574 y(sor)h(still)g(in)g(a)h(line)f(to)h -(mak)n(e)h(Org-mo)r(de)e(notice)i(the)f(c)n(hange.)4242 -3659 y Ff(4)4303 3683 y Fi(Keybinding)g(a\013ected)i(b)n(y)e -Fg(org-CUA-compatibility)p Fi(.)4535 3770 y Fb(Cop)n(yrigh)n(t)4838 -3768 y(c)4821 3770 y Fa(\015)d Fb(2006)i(F)-5 b(ree)21 -b(Soft)n(w)n(are)i(F)-5 b(oundation,)20 b(Inc.)4795 3826 -y(v4.04)h(for)h(Org-Mo)r(de)e(4.04,)i(2006)4912 3882 -y(Author:)k(Philip)18 b(Ro)r(ok)n(e)4473 3937 y(based)j(on)g(refcard)g -(design)g(and)f(format)i(b)n(y)f(Stephen)f(Gildea)4242 -4022 y(P)n(ermission)28 b(is)f(gran)n(ted)i(to)f(mak)n(e)h(and)e -(distribute)f(copies)j(of)f(this)f(card)h(pro-)4242 4077 -y(vided)23 b(the)h(cop)n(yrigh)n(t)h(notice)g(and)f(this)f(p)r -(ermission)h(notice)g(are)h(preserv)n(ed)g(on)4242 4133 -y(all)20 b(copies.)p eop end -%%Trailer - -userdict /end-hook known{end-hook}if -%%EOF diff --git a/etc/orgcard.tex b/etc/orgcard.tex deleted file mode 100644 index 51388bc6b1e..00000000000 --- a/etc/orgcard.tex +++ /dev/null @@ -1,754 +0,0 @@ -% Reference Card for Org Mode -\def\orgversionnumber{4.56} -\def\versionyear{2006} % latest update -\def\year{2007} % latest copyright year -% -%**start of header -\newcount\columnsperpage - -% This file can be printed with 1, 2, or 3 columns per page (see below). -% At the moment this card works quite nicely in 3 column format and -% currently takes 2 full pages. It is thus suited to producing one -% double-side page when printed. - -% There are a couple of tweaks in the format of this card which make it work -% slightly better on A4 paper. The changes due, I think, to Stephen Eglen, -% are commented below. Revert the changes if you want letter sized paper. - -% Try running something like -% tex org-mode-ref.tex; dvips -t landscape org-mode-ref.dvi -% to print the card - -\columnsperpage=3 - -% Copyright (C) 2004 Philip Rooke -% Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. -% FIXME - no Rooke in copyright.list - -% GNU Emacs is free software; you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation; either version 2, or (at your option) -% any later version. - -% GNU Emacs is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. - -% You should have received a copy of the GNU General Public License -% along with GNU Emacs; see the file COPYING. If not, write to -% the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -% Boston, MA 02111-1307, USA. - -% This file is intended to be processed by plain TeX (TeX82). -% -% The final reference card has six columns, three on each side. -% This file can be used to produce it in any of three ways: -% 1 column per page -% produces six separate pages, each of which needs to be reduced to 80%. -% This gives the best resolution. -% 2 columns per page -% produces three already-reduced pages. -% You will still need to cut and paste. -% 3 columns per page -% produces two pages which must be printed sideways to make a -% ready-to-use 8.5 x 11 inch reference card. -% For this you need a dvi device driver that can print sideways. -% Which mode to use is controlled by setting \columnsperpage above. -% -% Author: -% Stephen Gildea -% Internet: gildea@stop.mail-abuse.org -% -% Thanks to Paul Rubin, Bob Chassell, Len Tower, and Richard Mlynarik -% for their many good ideas. - -\def\shortcopyrightnotice{\vskip 1ex plus 2 fill - \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. - Permissions on back. v\orgversionnumber}} - -\def\copyrightnotice{ -\vskip 1ex plus 100 fill\begingroup\small -\centerline{Copyright \copyright\ \year\ Free Software Foundation, Inc.} -\centerline{v\orgversionnumber{} for Org-Mode \orgversionnumber{}, \versionyear} -\centerline{Author: Philip Rooke} -\centerline{based on refcard design and format by Stephen Gildea} - -Permission is granted to make and distribute copies of -this card provided the copyright notice and this permission notice -are preserved on all copies. - -\endgroup} - -% make \bye not \outer so that the \def\bye in the \else clause below -% can be scanned without complaint. -\def\bye{\par\vfill\supereject\end} - -\newdimen\intercolumnskip %horizontal space between columns -\newbox\columna %boxes to hold columns already built -\newbox\columnb - -\def\ncolumns{\the\columnsperpage} - -\message{[\ncolumns\space - column\if 1\ncolumns\else s\fi\space per page]} - -\def\scaledmag#1{ scaled \magstep #1} - -% This multi-way format was designed by Stephen Gildea October 1986. -% Note that the 1-column format is fontfamily-independent. -\if 1\ncolumns %one-column format uses normal size - \hsize 4in - \vsize 10in - \voffset -.7in - \font\titlefont=\fontname\tenbf \scaledmag3 - \font\headingfont=\fontname\tenbf \scaledmag2 - \font\smallfont=\fontname\sevenrm - \font\smallsy=\fontname\sevensy - - \footline{\hss\folio} - \def\makefootline{\baselineskip10pt\hsize6.5in\line{\the\footline}} -\else %2 or 3 columns uses prereduced size - \hsize 3.2in - -% FIXME - Try to make things more A4 friendly -% \vsize 7.95in - \vsize 7.65in -% \hoffset -.75in - \hoffset -.25in - \voffset -.745in - \font\titlefont=cmbx10 \scaledmag2 - \font\headingfont=cmbx10 \scaledmag1 - \font\smallfont=cmr6 - \font\smallsy=cmsy6 - \font\eightrm=cmr8 - \font\eightbf=cmbx8 - \font\eightit=cmti8 - \font\eighttt=cmtt8 - \font\eightmi=cmmi8 - \font\eightsy=cmsy8 - \textfont0=\eightrm - \textfont1=\eightmi - \textfont2=\eightsy - \def\rm{\eightrm} - \def\bf{\eightbf} - \def\it{\eightit} - \def\tt{\eighttt} - -% FIXME - Try to make things more A4 friendly -% \normalbaselineskip=.8\normalbaselineskip - \normalbaselineskip=.7\normalbaselineskip - \normallineskip=.8\normallineskip - \normallineskiplimit=.8\normallineskiplimit - \normalbaselines\rm %make definitions take effect - - \if 2\ncolumns - \let\maxcolumn=b - \footline{\hss\rm\folio\hss} - \def\makefootline{\vskip 2in \hsize=6.86in\line{\the\footline}} - \else \if 3\ncolumns - \let\maxcolumn=c - \nopagenumbers - \else - \errhelp{You must set \columnsperpage equal to 1, 2, or 3.} - \errmessage{Illegal number of columns per page} - \fi\fi - - \intercolumnskip=.46in - \def\abc{a} - \output={% %see The TeXbook page 257 - % This next line is useful when designing the layout. - %\immediate\write16{Column \folio\abc\space starts with \firstmark} - \if \maxcolumn\abc \multicolumnformat \global\def\abc{a} - \else\if a\abc - \global\setbox\columna\columnbox \global\def\abc{b} - %% in case we never use \columnb (two-column mode) - \global\setbox\columnb\hbox to -\intercolumnskip{} - \else - \global\setbox\columnb\columnbox \global\def\abc{c}\fi\fi} - \def\multicolumnformat{\shipout\vbox{\makeheadline - \hbox{\box\columna\hskip\intercolumnskip - \box\columnb\hskip\intercolumnskip\columnbox} - \makefootline}\advancepageno} - \def\columnbox{\leftline{\pagebody}} - - \def\bye{\par\vfill\supereject - \if a\abc \else\null\vfill\eject\fi - \if a\abc \else\null\vfill\eject\fi - \end} -\fi - -% we won't be using math mode much, so redefine some of the characters -% we might want to talk about -%\catcode`\^=12 -\catcode`\_=12 - -% we also need the tilde, for file names. -\catcode`\~=12 - -\chardef\\=`\\ -\chardef\{=`\{ -\chardef\}=`\} - -\hyphenation{mini-buf-fer} - -\parindent 0pt -\parskip 1ex plus .5ex minus .5ex - -\def\small{\smallfont\textfont2=\smallsy\baselineskip=.8\baselineskip} - -% newcolumn - force a new column. Use sparingly, probably only for -% the first column of a page, which should have a title anyway. -\outer\def\newcolumn{\vfill\eject} - -% title - page title. Argument is title text. -\outer\def\title#1{{\titlefont\centerline{#1}}\vskip 1ex plus .5ex} - -% section - new major section. Argument is section name. -\outer\def\section#1{\par\filbreak - \vskip 3ex plus 2ex minus 2ex {\headingfont #1}\mark{#1}% - \vskip 2ex plus 1ex minus 1.5ex} - -\newdimen\keyindent - -% beginindentedkeys...endindentedkeys - key definitions will be -% indented, but running text, typically used as headings to group -% definitions, will not. -\def\beginindentedkeys{\keyindent=1em} -\def\endindentedkeys{\keyindent=0em} -\endindentedkeys - -% paralign - begin paragraph containing an alignment. -% If an \halign is entered while in vertical mode, a parskip is never -% inserted. Using \paralign instead of \halign solves this problem. -\def\paralign{\vskip\parskip\halign} - -% \<...> - surrounds a variable name in a code example -\def\<#1>{{\it #1\/}} - -% kbd - argument is characters typed literally. Like the Texinfo command. -\def\kbd#1{{\tt#1}\null} %\null so not an abbrev even if period follows - -% beginexample...endexample - surrounds literal text, such a code example. -% typeset in a typewriter font with line breaks preserved -\def\beginexample{\par\leavevmode\begingroup - \obeylines\obeyspaces\parskip0pt\tt} -{\obeyspaces\global\let =\ } -\def\endexample{\endgroup} - -% key - definition of a key. -% \key{description of key}{key-name} -% prints the description left-justified, and the key-name in a \kbd -% form near the right margin. -\def\key#1#2{\leavevmode\hbox to \hsize{\vtop - {\hsize=.75\hsize\rightskip=1em - \hskip\keyindent\relax#1}\kbd{#2}\hfil}} - -\newbox\metaxbox -\setbox\metaxbox\hbox{\kbd{M-x }} -\newdimen\metaxwidth -\metaxwidth=\wd\metaxbox - -% metax - definition of a M-x command. -% \metax{description of command}{M-x command-name} -% Tries to justify the beginning of the command name at the same place -% as \key starts the key name. (The "M-x " sticks out to the left.) -\def\metax#1#2{\leavevmode\hbox to \hsize{\hbox to .75\hsize - {\hskip\keyindent\relax#1\hfil}% - \hskip -\metaxwidth minus 1fil - \kbd{#2}\hfil}} - -% threecol - like "key" but with two key names. -% for example, one for doing the action backward, and one for forward. -\def\threecol#1#2#3{\hskip\keyindent\relax#1\hfil&\kbd{#2}\hfil\quad - &\kbd{#3}\hfil\quad\cr} - -%**end of header - - -\title{Org-Mode Reference Card (1/2)} - -\centerline{(for version \orgversionnumber)} - -\section{Getting Started} -% -\vskip -1mm -\beginexample% -(add-to-list 'auto-mode-alist '("\\\\.org\$" . org-mode)) -(define-key global-map "\\C-cl" 'org-store-link)$^1$ -(define-key global-map "\\C-ca" 'org-agenda)$^1$ -\endexample -% -\metax{For the many customization options try}{M-x org-customize} -\metax{To read the on-line documentation try}{M-x org-info} - -\section{Visibility Cycling} - -\key{rotate current subtree between states}{TAB} -\key{rotate entire buffer between states}{S-TAB} -\key{show the whole file}{C-c C-a} -\key{reveal context around point}{C-c C-r} -%\key{show branches}{C-c C-k} - -\section{Motion} - -\key{next/previous heading}{C-c C-n/p} -\key{next/previous heading, same level}{C-c C-f/b} -\key{backward to higher level heading}{C-c C-u} -\key{jump to another place in document}{C-c C-j} -\key{previous/next plain list item}{S-UP/DOWN$^3$} - -\section{Structure Editing} - -\key{insert new heading/item at current level}{M-RET} -\key{insert new TODO entry/checkbox item}{M-S-RET} - -\key{promote current heading up one level}{M-LEFT} -\key{demote current heading down one level}{M-RIGHT} -\key{promote current subtree up one level}{M-S-LEFT} -\key{demote current subtree down one level}{M-S-RIGHT} - -\key{move subtree/list item up/down}{M-S-UP/DOWN} -\key{kill subtree}{C-c C-x C-w} -\key{copy subtree}{C-c C-x M-w} -\key{yank subtree}{C-c C-x C-y} -\key{narrow buffer to current subtree}{C-x n s} - -\section{Archiving} - -\key{toggle ARCHIVE tag}{C-c C-x C-a} -\metax{mark fully done children}{C-u C-c C-x C-a} -\key{force cycling of an ARCHIVEd tree}{C-TAB} -\key{move subtree to archive file}{C-c \$} -\key{move all fully done children}{C-u C-c \$} -To set archive location for current file, add a line like$^2$: -\vskip -1mm -\beginexample% -\#+ARCHIVE: archfile::* Archived Tasks -\endexample - -\section{Filtering and Sparse Trees} - -\key{show sparse tree for all matches of a regexp}{C-c /} -\key{view TODO's in sparse tree}{C-c C-v} -\key{global TODO list in agenda mode}{C-c t$^1$} -\key{create sparse tree with all deadlines due}{C-c C-w} -\key{time sorted view of current org file}{C-c a L} -%\key{agenda for the week}{C-c a$^1$} -%\key{agenda for date at cursor}{C-c C-o} - -\section{Tables} - -{\bf Creating a table} - -%\metax{insert a new Org-mode table}{M-x org-table-create} -\metax{just start typing, e.g.}{|Name|Phone|Age RET |- TAB} -\key{convert region to table}{C-c |} -\key{... separator at least 3 spaces}{C-3 C-c |} - -{\bf Commands available inside tables} - -The following commands work when the cursor is {\it inside a table}. -Outside of tables, the same keys may have other functionality. - -{\bf Re-aligning and field motion} - -\key{re-align the table without moving the cursor}{C-c C-c} -\key{re-align the table, move to next field}{TAB} -\key{move to previous field}{S-TAB} -\key{re-align the table, move to next row}{RET} - -{\bf Row and column editing} - -\key{move the current column left}{M-LEFT} -\key{move the current column right}{M-RIGHT} -\key{kill the current column}{M-S-LEFT} -\key{insert new column to left of cursor position}{M-S-RIGHT} - -\key{move the current row up}{M-UP} -\key{move the current row down}{M-DOWN} -\key{kill the current row or horizontal line}{M-S-UP} -\key{insert new row above the current row}{M-S-DOWN} -\key{insert horizontal line below the current row}{C-c -} -\key{insert horizontal line above the current row}{C-u C-c -} -\key{sort lines in region}{C-c \^{}} - -{\bf Regions} - -\key{cut rectangular region}{C-c C-x C-w} -\key{copy rectangular region}{C-c C-x M-w} -\key{paste rectangular region}{C-c C-x C-y} -\key{fill paragraph across selected cells}{C-c C-q} - -{\bf Calculations} (in combination with Emacs \kbd{calc} package) - -\key{set and eval column formula}{C-c =} -\key{set and eval named-field formula}{C-u C-c =} -\key{edit formulas in separate buffer}{C-c '} -\key{re-apply all stored equations to current line}{C-c *} -\key{re-apply all stored equations to entire table}{C-u C-c *} - -%\kbd{TAB}, \kbd{RET} and \kbd{C-c C-c} trigger automatic recalculation -%in lines starting with: {\tt | \# |}. - -\key{rotate calculation mark through \# * ! \^ \_ \$}{C-\#} - -\key{display column number cursor is in}{C-c ?} -\key{sum numbers in current column/rectangle}{C-c +} -\key{copy down with increment}{S-RET$^3$} - -Formulas typed in field are executed by \kbd{TAB}, -\kbd{RET} and \kbd{C-c C-c}. \kbd{=} introduces a column -formula, \kbd{:=} a named-field formula. - -\key{Example: Add Col1 and Col2}{=\$1+\$2} -\key{... with printf format specification}{=\$1+\$2;\%.2f} -\key{... with constants from constants.el}{=\$1/\$c/\$cm} -\key{sum from 3rd hline above to here}{:=vsum(\&III)} -\key{apply current column formula}{=} - -{\bf Miscellaneous} - -\key{to limit column width to \kbd{N} characters, use}{...| |...} -\key{edit the current field in a separate window}{C-c `} -\key{make current field fully visible}{C-u TAB} -\metax{export as tab-separated file}{M-x org-table-export} -\metax{import tab-separated file}{M-x org-table-import} - -{\bf Tables created with the \kbd{table.el} package} - -\key{insert a new \kbd{table.el} table}{C-c ~} -\key{recognize existing table.el table}{C-c C-c} -\key{convert table (Org-mode $\leftrightarrow$ table.el)}{C-c ~} - -\section{Links} - -\key{globally store link to the current location}{C-c l$^1$} -\key{insert a link (TAB completes stored links)}{C-c C-l} -\key{insert file link with file name completion}{C-u C-c C-l} -\key{edit (also hidden part of) link at point}{C-c C-l} - -\key{open file links in emacs}{C-c C-o} -\key{...force open in emacs/other window}{C-u C-c C-o} -\key{open link at point}{mouse-1/2} -\key{...force open in emacs/other window}{mouse-3} -\key{record a position in mark ring}{C-c \%} -\key{jump back to last followed link(s)}{C-c \&} - -{\bf Internal Links} - -\key{\kbd{<>}}{\rm target} -\key{\kbd{<<>>}}{\rm radio target$^2$} -\key{\kbd{[[*this text]]}}{\rm find headline} -\metax{\kbd{[[this text]]}}{\rm find target or text in buffer} -\metax{\kbd{[[this text][description]]}}{\rm optional link text} - -{\bf External Links} - -\key{\kbd{file:/home/dominik/img/mars.jpg}}{\rm file, absolute} -\key{\kbd{file:papers/last.pdf}}{\rm file, relative} -\key{\kbd{file:projects.org::*that text}}{\rm find headline} -\key{\kbd{file:projects.org::find me}}{\rm find trgt/string} -%\key{\kbd{file:projects.org::/regexp/}}{\rm regexp search} -\key{\kbd{http://www.astro.uva.nl/~dominik}}{\rm on the web} -\key{\kbd{mailto:adent@galaxy.net}}{\rm Email address} -\key{\kbd{news:comp.emacs}}{\rm Usenet group} -\key{\kbd{bbdb:Richard Stallman}}{\rm BBDB person} -\key{\kbd{gnus:group}}{\rm GNUS group} -\key{\kbd{gnus:group\#id}}{\rm GNUS message} -\key{\kbd{vm|wl|mhe|rmail:folder}}{\rm Mail folder} -\key{\kbd{vm|wl|mhe|rmail:folder\#id}}{\rm Mail message} -\key{\kbd{info:emacs:Regexps}}{\rm Info file:node} -\key{\kbd{shell:ls *.org}}{\rm shell command} -\key{\kbd{elisp:(calendar)}}{\rm elisp form} -\metax{\kbd{[[external link][description]]}}{\rm optional link text} -%\key{\kbd{vm://myself@some.where.org/folder\#id}}{\rm VM remote} - - -\section{Remember-mode Integration} - -See the manual for how to make remember.el use Org-mode links and -files. The note-finishing command \kbd{C-c C-c} will first prompt for -an org file. In the file, find a location with: - -\key{rotate subtree visibility}{TAB} -\key{next heading}{DOWN} -\key{previous heading}{UP} - -Insert the note with one of the following: - -\key{as sublevel of heading at cursor}{RET} -\key{right here (cursor not on heading)}{RET} -\key{before current heading}{LEFT} -\key{after current heading}{RIGHT} -\key{shortcut to end of buffer (cursor at buf-start)}{RET} -\key{Abort}{q} - -\section{Completion} - -In-buffer completion completes TODO keywords at headline start, TeX -macros after ``{\tt \\}'', option keywords after ``{\tt \#-}'', TAGS -after ``{\tt :}'', and dictionary words elsewhere. - -\key{Complete word at point}{M-TAB} - - -\newcolumn -\title{Org-Mode Reference Card (2/2)} - -\centerline{(for version \orgversionnumber)} - -\section{TODO Items and Checkboxes} - -\key{rotate the state of the current item}{C-c C-t} -\key{view TODO items in a sparse tree}{C-c C-v} -\key{view 3rd TODO keyword's sparse tree}{C-3 C-c C-v} - -\key{set the priority of the current item}{C-c , [ABC]} -\key{remove priority cookie from current item}{C-c , SPC} -\key{raise priority of current item}{S-UP$^3$} -\key{lower priority of current item}{S-DOWN$^3$} - -\key{\kbd{\#+SEQ_TODO: TODO TRY BLUFF DONE}}{\rm todo workflow} -\key{\kbd{\#+TYP_TODO: Phil home work DONE}}{\rm todo types} - -\key{insert new checkbox item in plain list}{M-S-RET} -\key{toggle checkbox(es) in region/entry/at point}{C-c C-x C-b} -\key{toggle checkbox at point}{C-c C-c} -\metax{checkbox statistics cookies: insert {\tt [/]} or {\tt [\%]}}{} -\key{update checkbox statistics (\kbd{C-u} : whole file)}{C-c \#} - -\section{Tags} - -\key{set tags for current heading}{C-c C-c} -\key{realign tags in all headings}{C-u C-c C-c} -\key{create sparse tree with matching tags}{C-c \\} -\key{globally (agenda) match tags at cursor}{C-c C-o} - -\section{Timestamps} - -\key{prompt for date and insert timestamp}{C-c .} -\key{like \kbd{C-c} . but insert date and time format}{C-u C-c .} -\key{Like \kbd{C-c .} but make stamp inactive}{C-c !} % FIXME -\key{insert DEADLINE timestamp}{C-c C-d} -\key{insert SCHEDULED timestamp}{C-c C-s} -\key{create sparse tree with all deadlines due}{C-c C-w} -\key{the time between 2 dates in a time range}{C-c C-y} -\key{change timestamp at cursor by $\pm 1$ day}{S-RIGHT/LEFT$^3$} -\key{change year/month/day at cursor by $\pm 1$}{S-UP/DOWN$^3$} -\key{access the calendar for the current date}{C-c >} -\key{insert timestamp matching date in calendar}{C-c <} -\key{access agenda for current date}{C-c C-o} -\key{Select date while prompted}{mouse-1/RET} -%\key{... select date in calendar}{mouse-1/RET} -%\key{... scroll calendar back/forward one month}{< / >} -%\key{... forward/backward one day}{S-LEFT/RIGHT} -%\key{... forward/backward one week}{S-UP/DOWN} -%\key{... forward/backward one month}{M-S-LEFT/RIGT} -\key{Toggle custom format display for dates/times}{C-c C-x C-t} - - -\section{Clocking Time} - -\key{start clock on current item}{C-c C-x C-i} -\key{stop clock on current item}{C-c C-x C-o} -\key{cancel current clock}{C-c C-x C-x} - -\key{display total subtree times}{C-c C-x C-d} -\key{remove displayed times}{C-c C-c} -\key{insert/update table with clock report}{C-c C-x C-r} - -\section{LaTeX and cdlatex-mode} - -\key{preview LaTeX fragment}{C-c C-x C-l} -\key{Expand abbreviation (cdlatex-mode)}{TAB} -\key{Insert/modify math symbol (cdlatex-mode)}{` / '} - -\section{Agenda Views} - -\key{add/move current file to front of agenda}{C-c [} -\key{remove current file from your agenda}{C-c ]} -\key{cycle through agenda file list}{C-,} - -\key{compile agenda for the current week}{C-c a a$^1$} -\key{compile global TODO list}{C-c a t$^1$} -\key{compile TODO list for specific keyword}{C-c a T$^1$} -\key{match tags in agenda files}{C-c a m$^1$} -\key{match tags in TODO entries}{C-c a M$^1$} -\key{show timeline of current org file}{C-c a L$^1$} -\key{configure custom commands}{C-c a C$^1$} -\key{agenda for date at cursor}{C-c C-o} - -\vskip 1mm -To set categories, add lines like$^2$: -\vskip -1mm -\beginexample% -\#+CATEGORY: MyCateg -\endexample - -{\bf Commands available in an agenda buffer} - -{\bf View Org file} - -\key{show original location of item}{SPC/mouse-3} -%\key{... also available with}{mouse-3} -\key{show and recenter window}{L} -\key{goto original location in other window}{TAB/mouse-2} -%\key{... also available with}{mouse-2} -\key{goto original location, delete other windows}{RET} -\key{toggle follow-mode}{f} - -{\bf Change display} - -\key{delete other windows}{o} -\key{switch to daily / weekly view}{d / w} -\key{toggle inclusion of diary entries}{D} -\key{toggle time grid for daily schedule}{g} -\key{toggle display of logbook entries}{l} -\key{refresh agenda buffer with any changes}{r} -\key{save all org-mode buffers}{s} -\key{display the following \kbd{org-agenda-ndays}}{RIGHT} -\key{display the previous \kbd{org-agenda-ndays}}{LEFT} -\key{goto today}{.} - -{\bf Remote editing} - -\key{digit argument}{0-9} -\key{change state of current TODO item}{t} -\key{kill item and source}{C-k} -\key{show tags of current headline}{T} -\key{set tags for current headline}{:} -\key{toggle ARCHIVE tag}{a} -\key{set priority of current item}{p} -\key{raise/lower priority of current item}{S-UP/DOWN$^3$} -\key{display weighted priority of current item}{P} -\key{schedule/set deadline for this item}{C-c C-s/d} -\key{change timestamp to one day earlier/later}{S-LEFT/RIGHT$^3$} -\key{change timestamp to today}{>} -\key{insert new entry into diary}{i} - -\key{Start the clock on current item (clock-in)}{I} -\key{Stop the clock (clock-out)}{O} -\key{Cancel current clock}{X} - - -{\bf Calendar commands} - -\key{find agenda cursor date in calendar}{c} -\key{compute agenda for calendar cursor date}{c} -\key{show phases of the moon}{M} -\key{show sunrise/sunset times}{S} -\key{show holidays}{H} -\key{convert date to other calendars}{C} - -{\bf Quit and Exit} - -\key{quit agenda, remove agenda buffer}{q} -\key{exit agenda, remove all agenda buffers}{x} - -\section{Calendar and Diary Integration} - -Include Emacs diary entries into Org-mode agenda with: -\beginexample% -(setq org-agenda-include-diary t) -\endexample - -\section{Exporting and Publishing} - -Exporting creates files with extensions {\it .txt\/} and {\it .html\/} -in the current directory. Publishing puts the resulting file into -some other place. - -\key{export/publish dispatcher}{C-c C-e} - -\key{export visible part only}{C-c C-e v} -\key{insert template of export options}{C-c C-x t} -\key{toggle fixed width for entry or region}{C-c :} - -{\bf HTML formatting} - -\key{make words {\bf bold}}{*bold*} -\key{make words {\it italic}}{/italic/} -\key{make words \underbar{underlined}}{_underlined_} -\key{sub- and superscripts}{x\^{}3, J_dust} -\key{\TeX{}-like macros}{\\alpha, \\to} -\key{typeset lines in fixed width font}{start with :} -\key{tables are exported as HTML tables}{start with |} -\key{links become HTML links}{http:... etc} -\key{include html tags}{@...@} - -{\bf Export options} - -Include additional information for export by putting these anywhere in the -org file. Use {\tt M-TAB} completion to make sure to get the right -keywords. {\tt M-TAB} again just after keyword is complete inserts examples. - -\key{the title to be shown}{\#+TITLE:} -\key{the author}{\#+AUTHOR:} -\key{authors email address}{\#+EMAIL:} -\key{language code for html}{\#+LANGUAGE:} -\key{free text description of file}{\#+TEXT:} -\key{... which can carry over multiple lines}{\#+TEXT:} -%\key{settings for the export process - see below}{\#+OPTIONS:} -\key{settings for the export process}{\#+OPTIONS:} - -%\key{set number of headline levels for export}{H:2} -%\key{turn on/off section numbers}{num:t} -%\key{turn on/off table of contents}{toc:t} -%\key{turn on/off linebreak preservation}{\\n:nil} -%\key{turn on/off quoted html tags}{@:t} -%\key{turn on/off fixed width sections}{::t} -%\key{turn on/off tables}{|:t} -%\key{turn on/off \TeX\ syntax for sub/super-scripts}{\^{}:t} -%\key{turn on/off emphasised text}{*:nil} -%\key{turn on/off \TeX\ macros}{TeX:t} - -{\bf Comments: Text not being exported} - -Text before the first headline is not considered part of the document -and is therefore never exported. -Lines starting with \kbd{\#} are comments and are not exported. -Subtrees whose header starts with COMMENT are never exported. - -\key{toggle COMMENT keyword on entry}{C-c ;} - - -%\section{CUA and pc-select compatibility}% - -%Configure the variable {\tt org-CUA-compatibility} to make Org-mode -%avoid the \kbd{S-} bindings used by these modes. When set, -%Org-mode will change the following keybindings (also in the agenda -%buffer, but not during date selection). See note mark four$^3$ -%throughout the reference card. -%%\vskip-mm -%\beginexample -%S-UP $\to$ M-p S-DOWN $\to$ M-n -%S-LEFT $\to$ M-- S-RIGHT $\to$ M-+ -%S-RET $\to$ C-S-RET -%\endexample - -\section{Dynamic Blocks} - -\key{update dynamic block at point}{C-c C-x C-u} -\metax{update all dynamic blocks}{C-u C-c C-x C-u} - -\section{Notes} -$^1$ This is only a suggestion for a binding of this command. Choose -you own key as shown under INSTALLATION. - -$^2$ After changing a \kbd{\#+KEYWORD} or \kbd{<<>>} line, -press \kbd{C-c C-c} with the cursor still in the line to update. - -$^3$ Keybinding affected by {\tt org-CUA-compatibility}. - -\copyrightnotice - -\bye - - -% arch-tag: 139f6750-5cfc-49ca-92b5-237fe5795290 - -%%% Local Variables: -%%% mode: latex -%%% TeX-master: t -%%% End: From d4c2a0cc15917d3be6ad1ff2f00f1ad1de7f08cd Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 30 Jan 2007 03:10:28 +0000 Subject: [PATCH 117/131] *** empty log message *** --- admin/notes/copyright | 57 ++++++++++++++++++++++++++++++------------- etc/ChangeLog | 5 ++++ 2 files changed, 45 insertions(+), 17 deletions(-) diff --git a/admin/notes/copyright b/admin/notes/copyright index c5fa152d71a..3f5dad37c73 100644 --- a/admin/notes/copyright +++ b/admin/notes/copyright @@ -77,13 +77,18 @@ lispintro/install-sh etc/edt-user.doc - update BOTH notices in this file -leim/CXTERM-DIC/4Corner.tit, ARRAY30.tit, [CCDOSPY.tit], ECDICT.tit, -ETZY.tit, [PY-b5.tit], Punct-b5.tit, Punct.tit, QJ-b5.tit, QJ.tit, -[SW.tit, TONEPY.tit,] ZOZY.tit +[etc/orgcard.tex, orgcard.ps - files removed 2007/1/29] + - with no assignment from Rooke, these files were removed. We are + asking for an assignment, and if one is received the files will be + replaced. + +leim/CXTERM-DIC/4Corner.tit, ARRAY30.tit, CCDOSPY.tit, ECDICT.tit, +ETZY.tit, PY-b5.tit, Punct-b5.tit, Punct.tit, QJ-b5.tit, QJ.tit, +SW.tit, TONEPY.tit, ZOZY.tit - leave the copyrights alone. leim/MISC-DIC/CTLau-b5.html, CTLau.html, cangjie-table.b5, cangjie-table.cns, -[pinyin.map, ziranma.cin] +pinyin.map, ziranma.cin - leave the copyright alone. leim/SKK-DIC/SKK-JISYO.L @@ -115,12 +120,23 @@ msdos/is_exec.c, sigaction.c - these files are copyright DJ Delorie. Leave the copyrights alone. src/gmalloc.c - - contains numerous copyrights from the GNU C library. Leave them alone. + - contains numerous copyrights from the GNU C library. Leave them alone. + +[src/unexhp9k800.c - removed 2007/1/27 +[src/m/sr2k.h - removed 2007/1/27] + - First file removed due to legal uncertainties; second file removed + due to dependency on first. Note that src/m/hp800.h is still needed on + hp800 arch. *** These are copyright issues still to be addressed: +Is it OK to just `cvs remove' a file for legal reasons, or is +something more drastic needed? A removed file is still available from +CVS, if suitable options are applied. + + All README (and other such files) that are non-trivial and were added by Emacs developers need copyright statements and copying permissions to be added. @@ -129,7 +145,13 @@ to be added. All images files that allow for comments should have copyright and license statements added. Whether or not this is possible, the information should be recorded in a README file in each directory with -images. +images. Image files to consider (is there such a thing as a "trivial" +image?): + src/bitmaps/ + etc/*.xpm, *.xbm + etc/images/ + etc/tree-widget/ + etc/*.ps, .eps admin/check-doc-strings @@ -143,7 +165,7 @@ etc/e/eterm-color.ti - no copyright because the entries are all forced. At least that is the case in the US; I am not sure whether we can rely on that in general." -For the above files, mail sent froam rms to Matthew (Martin?) Norwood +For the above files, mail sent from rms to Matthew (Martin?) Norwood asking what to do (via Eben Moglen), 2007/1/22 ("Copyright years"). @@ -152,8 +174,8 @@ etc/gnus-refcard.tex probably be removed, but it may be ok (waiting for rms) -etc/orgcard.tex - no Rooke in copyright.list - rms will talk with Org mode author about this. +[etc/orgcard.tex, orgcard.ps] + Re-add these files if an assignment is received from Rooke. etc/sk-refcard.ps, pl-refcard.ps, cs-refcard.ps @@ -161,14 +183,6 @@ These refcards need to be regenerated (by those with suitable TeX setups) to get updated copyrights. -leim/CXTERM-DIC/CCDOSPY.tit, PY-b5.tit, SW.tit, TONEPY.tit -leim/MISC-DIC/pinyin.map, ziranma.cin - The copyright and license is stated in the README file, but we may as - well copy them into the files themselves (possibly at the expense of - making them incompatible with their original formats, but they will - still be usable by Emacs). [Kenichi Handa] - - lib-src/etags.c - no 'k.* arnold' in copyright.list' rms: "That is ok, in principle. I used free code released by Ken Arnold as the starting point. However, it may be that we need to get @@ -194,6 +208,15 @@ man/back.texi, trampver.texi msdos/ - do we need to add COPYING.LIB (because COPYING.DJ refers to it)? + (but see below). + + +msdos/is_exec.c + - does copying.dj replace eliz's copyright? + + +msdos/is_exec.c, sigaction.c + - relicense under the GPL oldXMenu/ diff --git a/etc/ChangeLog b/etc/ChangeLog index e06094d34b1..d58c57d980c 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-20 Glenn Morris + + * orgcard.tex: Remove for legal reasons. + * orgcard.ps: Remove for legal reasons. + 2007-01-27 Kevin Rodgers * PROBLEMS: More details about disabling features that hamper From 4799aa91aac90c2e61ef141df9243c2f8deb79d3 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Tue, 30 Jan 2007 10:09:53 +0000 Subject: [PATCH 118/131] Add "no-byte-compile: t" local variable. --- nt/ChangeLog | 4 ++++ nt/subdirs.el | 1 + 2 files changed, 5 insertions(+) diff --git a/nt/ChangeLog b/nt/ChangeLog index 9475eeb32ff..a74e27e03c0 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,7 @@ +2007-01-30 Juanma Barranquero + + * subdirs.el: Add "no-byte-compile: t" local variable. + 2007-01-10 Jason Rumney * README: Update URLs and advice about reporting bugs. diff --git a/nt/subdirs.el b/nt/subdirs.el index 5370698ec70..ee1c1237673 100644 --- a/nt/subdirs.el +++ b/nt/subdirs.el @@ -1,2 +1,3 @@ +;; -*- no-byte-compile: t -*- (if (fboundp 'normal-top-level-add-subdirs-to-load-path) (normal-top-level-add-subdirs-to-load-path)) From 482d6bf5d01867ee7f06295b585bff19828896b0 Mon Sep 17 00:00:00 2001 From: "Robert J. Chassell" Date: Tue, 30 Jan 2007 12:57:11 +0000 Subject: [PATCH 119/131] (else): Rephrase message of first if-then-else example so it is right both in itself and in the "true" case of the expression, which asks whether 4 is greater than 5. --- lispintro/ChangeLog | 7 +++++++ lispintro/emacs-lisp-intro.texi | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog index 96491b93c08..7d4fae9eba8 100644 --- a/lispintro/ChangeLog +++ b/lispintro/ChangeLog @@ -1,3 +1,10 @@ +2007-01-30 Robert J. Chassell + + * emacs-lisp-intro.texi (else): Rephrase message of first + if-then-else example so it is right both in itself and in the + "true" case of the expression, which asks whether 4 is greater + than 5. + 2006-11-27 Andreas Schwab * Makefile.in (usermanualdir): Define. diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 6e125989446..0318ac5d361 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way: @smallexample @group -(if (> 4 5) ; @r{if-part} - (message "5 is greater than 4!") ; @r{then-part} - (message "4 is not greater than 5!")) ; @r{else-part} +(if (> 4 5) ; @r{if-part} + (message "4 falsely greater than 5!") ; @r{then-part} + (message "4 is not greater than 5!")) ; @r{else-part} @end group @end smallexample From 28c0f07a3cf7e14593d07ee7e0a77de8819968cb Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 16:52:39 +0000 Subject: [PATCH 120/131] * image-mode.el (image-mode): Don't automatically view as image. --- lisp/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f559804fed..623846f0c9c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-30 Chong Yidong + + * image-mode.el (image-mode): Don't automatically view as image. + 2007-01-29 Juanma Barranquero * isearchb.el (isearchb-iswitchb): From 9f446ee9051ded164369423a437076b3e46205d1 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 16:52:48 +0000 Subject: [PATCH 121/131] (image-mode): Don't automatically view as image. --- lisp/image-mode.el | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 5b24aa316dd..97f1a7902dc 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -60,17 +60,11 @@ to toggle between display as an image and display as text." (setq major-mode 'image-mode) (use-local-map image-mode-map) (add-hook 'change-major-mode-hook 'image-toggle-display-text nil t) - (if (and (display-images-p) - (not (get-text-property (point-min) 'display))) - (image-toggle-display) - ;; Set next vars when image is already displayed but local - ;; variables were cleared by kill-all-local-variables - (setq cursor-type nil truncate-lines t)) (run-mode-hooks 'image-mode-hook) (if (display-images-p) (message "%s" (concat (substitute-command-keys - "Type \\[image-toggle-display] to view the image as ") + "Type \\[image-toggle-display] to view as ") (if (get-text-property (point-min) 'display) "text" "an image") ".")))) From caf39874e03fc8d6d878063cc7db8b88cc599a35 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 16:57:18 +0000 Subject: [PATCH 122/131] * image-mode.el (image-toggle-display): Add `disabled' property. --- lisp/ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 623846f0c9c..5e7d688a14c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,7 @@ 2007-01-30 Chong Yidong * image-mode.el (image-mode): Don't automatically view as image. + (image-toggle-display): Add `disabled' property. 2007-01-29 Juanma Barranquero From fd014ebf25216662c06644d820a165ab5af3fbfd Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 16:57:36 +0000 Subject: [PATCH 123/131] (image-toggle-display): Add `disabled' property. --- lisp/image-mode.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 97f1a7902dc..3e10afcbfeb 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -173,6 +173,11 @@ and showing the image as an image." (if (called-interactively-p) (message "Repeat this command to go back to displaying the file as text"))))) +(put 'image-toggle-display 'disabled "\ +WARNING: Displaying images can be a security risk. +Please make sure you're using up-to-date image libraries +and the images displayed come from a trusted source.") + (provide 'image-mode) ;; arch-tag: b5b2b7e6-26a7-4b79-96e3-1546b5c4c6cb From c30918b635cf1c7796894df512cd9777a68f05b5 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 17:10:07 +0000 Subject: [PATCH 124/131] * make-package (compver): Install info and manpages. --- mac/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mac/ChangeLog b/mac/ChangeLog index 228616ba439..c5aa0011a87 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog @@ -1,3 +1,7 @@ +2007-01-30 Piet van Oostrum + + * make-package (compver): Install info and manpages. + 2006-12-04 YAMAMOTO Mitsuharu * inc/config.h: Sync with src/config.in. From 65f379881aefe387eadff5d3a1e06d063604b63b Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 17:10:16 +0000 Subject: [PATCH 125/131] (compver): Install info and manpages. --- mac/make-package | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mac/make-package b/mac/make-package index 2c113edbd13..a783ef40a50 100755 --- a/mac/make-package +++ b/mac/make-package @@ -330,6 +330,8 @@ compver=powerpc-apple-darwin`uname -r` if test "$self_contained" = "yes"; then # Move shared files down to Resources directory mv $installprefix/share/emacs/$version/* $installprefix + mv $installprefix/share/info $installprefix + mv $installprefix/share/man $installprefix rm -rf $installprefix/share # These directories might remain in Resources mv $installprefix/bin $installprefix/../MacOS/bin From 9b4837a44446a1256778d873931fcc9c47b0eca6 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 19:36:32 +0000 Subject: [PATCH 126/131] * type-break.el (type-break-catch-up-event): New function. (type-break-demo-hanoi, type-break-demo-life) (type-break-demo-boring): Use it. --- lisp/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5e7d688a14c..103b9f5dba2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2007-01-30 Chong Yidong + * type-break.el (type-break-catch-up-event): New function. + (type-break-demo-hanoi, type-break-demo-life) + (type-break-demo-boring): Use it. + * image-mode.el (image-mode): Don't automatically view as image. (image-toggle-display): Add `disabled' property. From a5b5e31e1c7d68aa37f96e0628d49d2235d2b952 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 30 Jan 2007 19:36:41 +0000 Subject: [PATCH 127/131] (type-break-catch-up-event): New function. (type-break-demo-hanoi, type-break-demo-life) (type-break-demo-boring): Use it. --- lisp/type-break.el | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lisp/type-break.el b/lisp/type-break.el index 98851bcab20..361670dbe6c 100644 --- a/lisp/type-break.el +++ b/lisp/type-break.el @@ -1120,6 +1120,13 @@ With optional non-nil ALL, force redisplay of all mode-lines." ;;; Demo wrappers +(defun type-break-catch-up-event () + ;; If the last input event is a down-event, read and discard the + ;; corresponding up-event too, to avoid triggering another prompt. + (and (eventp last-input-event) + (memq 'down (event-modifiers last-input-event)) + (read-event))) + ;; This is a wrapper around hanoi that calls it with an arg large enough to ;; make the largest discs possible that will fit in the window. ;; Also, clean up the *Hanoi* buffer after we're done. @@ -1132,9 +1139,11 @@ With optional non-nil ALL, force redisplay of all mode-lines." (hanoi (/ (window-width) 8)) ;; Wait for user to come back. (read-event) + (type-break-catch-up-event) (kill-buffer "*Hanoi*")) (quit (read-event) + (type-break-catch-up-event) (and (get-buffer "*Hanoi*") (kill-buffer "*Hanoi*"))))) @@ -1153,12 +1162,14 @@ With optional non-nil ALL, force redisplay of all mode-lines." (life 3) ;; wait for user to return (read-event) + (type-break-catch-up-event) (kill-buffer "*Life*")) (life-extinct (message "%s" (get 'life-extinct 'error-message)) ;; restart demo (setq continue t)) (quit + (type-break-catch-up-event) (and (get-buffer "*Life*") (kill-buffer "*Life*"))))))) @@ -1244,7 +1255,8 @@ With optional non-nil ALL, force redisplay of all mode-lines." message)))) (goto-char (point-min)) (sit-for 60)) - (read-event) + (read-event) + (type-break-catch-up-event) (kill-buffer buffer-name)) (quit (and (get-buffer buffer-name) From 06531fc3fc5d8c975d3edc9d8b77118f88b742d7 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 30 Jan 2007 20:23:38 +0000 Subject: [PATCH 128/131] * files.el (get-free-disk-space): Return nil for remote directories. * net/ange-ftp.el (ange-ftp-ls): In case of wildcards, use "ls" instead of "dir". --- lisp/ChangeLog | 8 +++++++ lisp/files.el | 55 ++++++++++++++++++++++---------------------- lisp/net/ange-ftp.el | 2 +- 3 files changed, 37 insertions(+), 28 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 103b9f5dba2..8c8ca712940 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2007-01-30 Michael Albinus + + * files.el (get-free-disk-space): Return nil for remote + directories. + + * net/ange-ftp.el (ange-ftp-ls): In case of wildcards, use "ls" + instead of "dir". + 2007-01-30 Chong Yidong * type-break.el (type-break-catch-up-event): New function. diff --git a/lisp/files.el b/lisp/files.el index f671f1ae0c4..36f9e0353fb 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -4749,36 +4749,37 @@ preference to the program given by this variable." "Return the amount of free space on directory DIR's file system. The result is a string that gives the number of free 1KB blocks, or nil if the system call or the program which retrieve the information -fail. +fail. It returns also nil when DIR is a remote directory. This function calls `file-system-info' if it is available, or invokes the program specified by `directory-free-space-program' if that is non-nil." - ;; Try to find the number of free blocks. Non-Posix systems don't - ;; always have df, but might have an equivalent system call. - (if (fboundp 'file-system-info) - (let ((fsinfo (file-system-info dir))) - (if fsinfo - (format "%.0f" (/ (nth 2 fsinfo) 1024)))) - (save-match-data - (with-temp-buffer - (when (and directory-free-space-program - (eq 0 (call-process directory-free-space-program - nil t nil - directory-free-space-args - dir))) - ;; Usual format is a header line followed by a line of - ;; numbers. - (goto-char (point-min)) - (forward-line 1) - (if (not (eobp)) - (progn - ;; Move to the end of the "available blocks" number. - (skip-chars-forward "^ \t") - (forward-word 3) - ;; Copy it into AVAILABLE. - (let ((end (point))) - (forward-word -1) - (buffer-substring (point) end))))))))) + (when (not (file-remote-p dir)) + ;; Try to find the number of free blocks. Non-Posix systems don't + ;; always have df, but might have an equivalent system call. + (if (fboundp 'file-system-info) + (let ((fsinfo (file-system-info dir))) + (if fsinfo + (format "%.0f" (/ (nth 2 fsinfo) 1024)))) + (save-match-data + (with-temp-buffer + (when (and directory-free-space-program + (eq 0 (call-process directory-free-space-program + nil t nil + directory-free-space-args + dir))) + ;; Usual format is a header line followed by a line of + ;; numbers. + (goto-char (point-min)) + (forward-line 1) + (if (not (eobp)) + (progn + ;; Move to the end of the "available blocks" number. + (skip-chars-forward "^ \t") + (forward-word 3) + ;; Copy it into AVAILABLE. + (let ((end (point))) + (forward-word -1) + (buffer-substring (point) end)))))))))) ;; The following expression replaces `dired-move-to-filename-regexp'. (defvar directory-listing-before-filename-regexp diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index 19041d046db..08efbb1e107 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -2599,7 +2599,7 @@ away in the internal cache." (if wildcard (progn (ange-ftp-cd host user (file-name-directory name)) - (setq lscmd (list 'dir file temp lsargs))) + (setq lscmd (list 'ls file temp lsargs))) (setq lscmd (list 'dir name temp lsargs))) (unwind-protect (if (car (setq result (ange-ftp-send-cmd From 8af39ffbb3d34d7ebc35ed025a466f3157e37f9c Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Tue, 30 Jan 2007 22:06:26 +0000 Subject: [PATCH 129/131] *** empty log message *** --- lisp/ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8c8ca712940..d553f10b496 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2007-01-30 Nick Roberts + + * progmodes/gdb-ui.el (gdb-var-delete-1): New function. + (gdb-var-delete): Use it. + (gdb-var-update-handler-1): Handle value "invalid" for MI field + `in_scope'. + 2007-01-30 Michael Albinus * files.el (get-free-disk-space): Return nil for remote From 01b8fc600aa254ebffdcc107570f8af3a3e347e4 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Tue, 30 Jan 2007 22:07:12 +0000 Subject: [PATCH 130/131] (gdb-var-delete-1): New function. (gdb-var-delete): Use it. (gdb-var-update-handler-1): Handle value "invalid" for MI field `in_scope'. --- lisp/progmodes/gdb-ui.el | 37 ++++++++++++++++--------------------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index c2811a9658a..c4cd96010a6 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -848,6 +848,19 @@ type_changed=\".*?\".*?}") (setq gdb-pending-triggers (delq 'gdb-var-update gdb-pending-triggers))) +(defun gdb-var-delete-1 (varnum) + (gdb-enqueue-input + (list + (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) + 'gdba) + (concat "server interpreter mi \"-var-delete " varnum "\"\n") + (concat "-var-delete " varnum "\n")) + 'ignore)) + (setq gdb-var-list (delq var gdb-var-list)) + (dolist (varchild gdb-var-list) + (if (string-match (concat (car var) "\\.") (car varchild)) + (setq gdb-var-list (delq varchild gdb-var-list))))) + (defun gdb-var-delete () "Delete watch expression at point from the speedbar." (interactive) @@ -857,17 +870,7 @@ type_changed=\".*?\".*?}") (varnum (car var))) (if (string-match "\\." (car var)) (message-box "Can only delete a root expression") - (gdb-enqueue-input - (list - (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) - 'gdba) - (concat "server interpreter mi \"-var-delete " varnum "\"\n") - (concat "-var-delete " varnum "\n")) - 'ignore)) - (setq gdb-var-list (delq var gdb-var-list)) - (dolist (varchild gdb-var-list) - (if (string-match (concat (car var) "\\.") (car varchild)) - (setq gdb-var-list (delq varchild gdb-var-list)))))))) + (gdb-var-delete-1 varnum))))) (defun gdb-var-delete-children (varnum) "Delete children of variable object at point from the speedbar." @@ -3443,16 +3446,8 @@ in_scope=\"\\(.*?\\)\".*?}") (setcar (nthcdr 5 var) 'changed) (setcar (nthcdr 4 var) (read (match-string 2)))) -;; ((string-equal match "invalid") -;; (gdb-enqueue-input -;; (list -;; (if (eq (buffer-local-value -;; 'gud-minor-mode gud-comint-buffer) 'gdba) -;; (concat "server interpreter mi \"-var-delete " -;; varnum "\"\n") -;; (concat "-var-delete " varnum "\n")) -;; 'ignore))) - ))))) + ((string-equal match "invalid") + (gdb-var-delete-1 varnum))))))) (setq gdb-pending-triggers (delq 'gdb-var-update gdb-pending-triggers)) (gdb-speedbar-update)) From 41e49ce63ee2f9945ff99a19b00752ea887ef506 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 30 Jan 2007 22:18:03 +0000 Subject: [PATCH 131/131] Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 197-199) - Merge from emacs--devo--0 - Update from CVS 2007-01-28 Andreas Seltenreich * lisp/gnus/nnslashdot.el (nnslashdot-request-article): Update end-of-article regexp. 2007-01-24 Katsumi Yamaoka * lisp/gnus/uudecode.el (uudecode-string-to-multibyte): New function emulating string-to-multibyte. (uudecode-decode-region-internal): Use it. 2007-01-28 Andreas Seltenreich * man/gnus.texi (Batching Agents): Fix example. Reported by Tassilo Horn . Revision: emacs@sv.gnu.org/emacs--devo--0--patch-621 --- lisp/gnus/ChangeLog | 11 +++++++++++ lisp/gnus/nnslashdot.el | 2 +- lisp/gnus/uudecode.el | 16 +++++++++++++++- man/ChangeLog | 5 +++++ man/gnus.texi | 2 +- 5 files changed, 33 insertions(+), 3 deletions(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index cc10736aa5d..ddc604c6b5d 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -2,6 +2,17 @@ * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring. +2007-01-28 Andreas Seltenreich + + * nnslashdot.el (nnslashdot-request-article): Update end-of-article + regexp. + +2007-01-24 Katsumi Yamaoka + + * uudecode.el (uudecode-string-to-multibyte): New function emulating + string-to-multibyte. + (uudecode-decode-region-internal): Use it. + 2007-01-23 Reiner Steib * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix diff --git a/lisp/gnus/nnslashdot.el b/lisp/gnus/nnslashdot.el index 28fd34b0da0..35ce9f385e9 100644 --- a/lisp/gnus/nnslashdot.el +++ b/lisp/gnus/nnslashdot.el @@ -259,7 +259,7 @@ (buffer-substring (search-forward "
") (progn - (search-forward "
") + (search-forward "
+ + * gnus.texi (Batching Agents): Fix example. Reported by Tassilo Horn + . + 2007-01-27 Eli Zaretskii * msdog.texi (ls in Lisp): Document ls-lisp-format-time-list and diff --git a/man/gnus.texi b/man/gnus.texi index 80a9e47c74b..625549890ae 100644 --- a/man/gnus.texi +++ b/man/gnus.texi @@ -19040,7 +19040,7 @@ following incantation: @example #!/bin/sh -emacs -batch -l ~/.emacs -l ~/.gnus.el gnus-agent-batch >/dev/null 2>&1 +emacs -batch -l ~/.emacs -l ~/.gnus.el -f gnus-agent-batch >/dev/null 2>&1 @end example