*** empty log message ***
authorLuc Teirlinck <teirllm@auburn.edu>
Mon, 27 Feb 2006 01:44:20 +0000 (01:44 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Mon, 27 Feb 2006 01:44:20 +0000 (01:44 +0000)
lisp/ChangeLog
src/ChangeLog

index 72c8f22..813ca91 100644 (file)
@@ -1,3 +1,38 @@
+2006-02-26  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * jka-cmpr-hook.el (jka-compr-compression-info-list)
+       (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
+       Give :set functions to provide automatic updating.
+       Update docstring.  Give compiler defvars early in the file
+       and move the defcustoms to a later spot where all called functions
+       are defined.
+       (jka-compr-file-name-handler-entry): Doc fix.
+       (jka-compr-compression-info-list--internal)
+       (jka-compr-mode-alist-additions--internal)
+       (jka-compr-load-suffixes--internal): New variables.
+       (jka-compr-install): Set the three above variables.
+       Update `load-file-rep-suffixes' instead of `load-suffixes'.
+       (jka-compr-update, jka-compr-set): New functions.
+       (auto-compression-mode): Doc fix.
+
+       * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
+       Update `load-file-rep-suffixes' instead of `load-suffixes'.
+       Use jka-compr-compression-info-list--internal,
+       jka-compr-mode-alist-additions--internal and
+       jka-compr-load-suffixes--internal.
+
+       * files.el (load-library):
+       * loadhist.el (file-loadhist-lookup):
+       * startup.el (command-line):
+       * subr.el (locate-library):
+       * emacs-lisp/autoload.el (update-directory-autoloads):
+       * emacs-lisp/find-func.el (find-library-suffixes): Use
+       `get-load-suffixes' instead of `load-suffixes'.
+
+       * subr.el (locate-library):
+       * emacs-lisp/find-func.el (find-library-name): Use
+       `load-file-rep-suffixes' instead of '("").
+
 2006-02-26  Kim F. Storm  <storm@cua.dk>
 
        * ido.el (ido-save-history, ido-load-history): Simplify.  Don't
index f82a186..f8b34eb 100644 (file)
@@ -1,5 +1,21 @@
 2006-02-26  Luc Teirlinck  <teirllm@auburn.edu>
 
+       * lread.c: Declare Vload_file_rep_suffixes instead of
+       deleted variable default_suffixes.
+       (Fget_load_suffixes): New function.
+       (Fload): Use Fget_load_suffixes and Vload_file_rep_suffixes.
+       No longer use deleted variable default_suffixes.  Update docstring.
+       (syms_of_lread): defsubr Sget_load_suffixes.
+       Expand `load-suffixes' docstring.
+       Delete default_suffixes and DEFVAR_LISP the new variable
+       `load-file-rep-suffixes'.
+
+       * w32.c (check_windows_init_file): Use Fget_load_suffixes instead
+       of Vload_suffixes.
+
+       * lisp.h: EXFUN Fget_load_suffixes.
+       Extern Vload_file_rep_suffixes.
+
        * eval.c (specpdl_ptr): Remove volatile qualifier for consistency
        with lisp.h.