diff options
| author | Stefan Monnier | 2000-06-20 17:06:32 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-20 17:06:32 +0000 |
| commit | 8972fe79a7bdb5b2fb557456918e78fecc2e6c86 (patch) | |
| tree | 697bbb1f7650c3985b1bdb8d8c8a330bab65b500 | |
| parent | a60198e5df719794ef91398c16062de790ff0602 (diff) | |
| download | emacs-8972fe79a7bdb5b2fb557456918e78fecc2e6c86.tar.gz emacs-8972fe79a7bdb5b2fb557456918e78fecc2e6c86.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 39 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
2 files changed, 35 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7077ccfed05..cd6c1c8edc2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * jit-lock.el (with-buffer-prepared-for-jit-lock): | ||
| 4 | Renamed from with-buffer-prepared-for-font-lock and use | ||
| 5 | inhibit-modification-hooks rather than setting *-change-functions. | ||
| 6 | Update all functions to use the new name. | ||
| 7 | (jit-lock-first-unfontify-pos): New semantics (and doc). | ||
| 8 | (jit-lock-mode): Make non-interactive. | ||
| 9 | Don't automatically turn on font-lock. | ||
| 10 | Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode. | ||
| 11 | Always use jit-lock-after-change. | ||
| 12 | Remove and restore font-lock-after-change-function. | ||
| 13 | (turn-on-jit-lock, jit-lock-after-fontify-buffer) | ||
| 14 | (jit-lock-after-unfontify-buffer): Remove. | ||
| 15 | (jit-lock-stealth-fontify): | ||
| 16 | Reset jit-lock-first-unfontify-pos to point-max rather than to nil. | ||
| 17 | (jit-lock-after-change): Set the `fontified' text-prop to nil. | ||
| 18 | |||
| 1 | 2000-06-20 Sam Steingold <sds@gnu.org> | 19 | 2000-06-20 Sam Steingold <sds@gnu.org> |
| 2 | 20 | ||
| 3 | * emacs-lisp/cl-indent.el (toplevel): Indent | 21 | * emacs-lisp/cl-indent.el (toplevel): Indent |
| @@ -10,24 +28,23 @@ | |||
| 10 | (reftex-compile-variables): Fixed problem with end of section-re. | 28 | (reftex-compile-variables): Fixed problem with end of section-re. |
| 11 | 29 | ||
| 12 | * texmodes/reftex-dcr.el (reftex-view-crossref, | 30 | * texmodes/reftex-dcr.el (reftex-view-crossref, |
| 13 | reftex-view-crossref-from-bibtex): Deal with changed | 31 | reftex-view-crossref-from-bibtex): |
| 14 | `reftex-find-citation-regexp-format'. | 32 | Deal with changed `reftex-find-citation-regexp-format'. |
| 15 | (reftex-view-regexp-match, reftex-view-crossref-from-bibtex): | 33 | (reftex-view-regexp-match, reftex-view-crossref-from-bibtex): |
| 16 | Replaced `remprop' with `put'. | 34 | Replaced `remprop' with `put'. |
| 17 | (reftex-view-crossref, reftex-view-crossref-when-idle): Support | 35 | (reftex-view-crossref, reftex-view-crossref-when-idle): |
| 18 | for bibentry. | 36 | Support for bibentry. |
| 19 | 37 | ||
| 20 | * textmodes/reftex-vars.el (reftex-cite-format-builtin): New entry for | 38 | * textmodes/reftex-vars.el (reftex-cite-format-builtin): |
| 21 | bibentry package. | 39 | New entry for bibentry package. |
| 22 | 40 | ||
| 23 | * textmodes/reftex-parse.el (reftex-locate-bibliography-files): Regexp | 41 | * textmodes/reftex-parse.el (reftex-locate-bibliography-files): |
| 24 | also matches "\nobibliography". | 42 | Regexp also matches "\nobibliography". |
| 25 | 43 | ||
| 26 | * textmodes/reftex-global.el (reftex-renumber-simple-labels): Call | 44 | * textmodes/reftex-global.el (reftex-renumber-simple-labels): |
| 27 | `reftex-ensure-write-access' before doing anything. | 45 | Call `reftex-ensure-write-access' before doing anything. |
| 28 | (reftex-ensure-write-access): New function. | 46 | (reftex-ensure-write-access): New function. |
| 29 | 47 | ||
| 30 | |||
| 31 | 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> | 48 | 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> |
| 32 | 49 | ||
| 33 | * progmodes/idlwave.el: File re-installed (update to version 4.2) | 50 | * progmodes/idlwave.el: File re-installed (update to version 4.2) |
diff --git a/src/ChangeLog b/src/ChangeLog index dfe2076abd2..ac849aeafc2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | Based on a patch by Larry Jones <larry.jones@sdrc.com>. | ||
| 3 | |||
| 4 | * regex.c (re_match, re_match_2): Protect calls to alloca (0). | ||
| 5 | (re_comp): Cast gettext return value to avoid complaints when | ||
| 6 | !HAVE_LIBINTL. | ||
| 7 | |||
| 1 | 2000-06-20 Dave Love <fx@gnu.org> | 8 | 2000-06-20 Dave Love <fx@gnu.org> |
| 2 | 9 | ||
| 3 | * m/stride.h, m/mips.h: Don't define HAVE_GETWD, | 10 | * m/stride.h, m/mips.h: Don't define HAVE_GETWD, |