diff options
| author | Stefan Monnier | 2002-11-09 22:25:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-11-09 22:25:39 +0000 |
| commit | b7305e019634ab8ea664f018f761a3c2d11d4dd3 (patch) | |
| tree | 38708ecb79239d08beb55b6d1d96dd08333acf3c | |
| parent | 79bd6490a2f32a620bf159abea25cc2a785547fa (diff) | |
| download | emacs-b7305e019634ab8ea664f018f761a3c2d11d4dd3.tar.gz emacs-b7305e019634ab8ea664f018f761a3c2d11d4dd3.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 41 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
2 files changed, 39 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f35abb7991e..c3511953eea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,16 +1,43 @@ | |||
| 1 | 2002-11-09 Dave Love <fx@gnu.org> | 1 | 2002-11-09 Dave Love <fx@gnu.org> |
| 2 | 2 | ||
| 3 | * international/mule-cmds.el (current-language-environment): Fix | 3 | * international/mule-cmds.el (current-language-environment): Fix :type. |
| 4 | :type. | ||
| 5 | 4 | ||
| 6 | * international/ucs-tables.el: Revert to using | 5 | * international/ucs-tables.el: Revert to using |
| 7 | translation-table-for-input instead of keyboard-translate-table. | 6 | translation-table-for-input instead of keyboard-translate-table. |
| 8 | 7 | ||
| 9 | * international/quail.el (quail-input-string-to-events): Revert | 8 | * international/quail.el (quail-input-string-to-events): |
| 10 | last change. | 9 | Revert last change. |
| 11 | 10 | ||
| 12 | * simple.el (quoted-insert): Bind translation-table-for-input, not | 11 | * simple.el (quoted-insert): Bind translation-table-for-input, |
| 13 | keyboard-translate-table. | 12 | not keyboard-translate-table. |
| 13 | |||
| 14 | 2002-11-08 Stefan Monnier <monnier@cs.yale.edu> | ||
| 15 | |||
| 16 | * arc-mode.el (archive-zip-summarize): Don't hardcode (point-min) = 1. | ||
| 17 | |||
| 18 | * complete.el (PC-do-completion): Make partial-completion work | ||
| 19 | with incomplete directory names. | ||
| 20 | |||
| 21 | * textmodes/tex-mode.el (latex-standard-block-names): Rename from | ||
| 22 | standard-latex-block-names. | ||
| 23 | (tex-font-lock-keywords-1): Add providecommand, renewenvironment, | ||
| 24 | and renewtheorem. Highlight \it and \bf separately since they | ||
| 25 | may overlap. | ||
| 26 | (tex-font-lock-suscript, tex-font-lock-unfontify-region): New funs. | ||
| 27 | (tex-font-lock-keywords-3, tex-verbatim-environments) | ||
| 28 | (tex-font-lock-syntactic-keywords): New vars. | ||
| 29 | (superscript, subscript, tex-verbatim-face): New faces. | ||
| 30 | (tex-font-lock-syntactic-face-function): Handle \verb construct. | ||
| 31 | (tex-common-initialization): Update font-lock-defaults setting. | ||
| 32 | (tex-insert-braces): Make it into a skeleton. | ||
| 33 | (latex-fill-nobreak-predicate): Don't break after \. | ||
| 34 | (latex-insert-block): Rename from tex-latex-block. | ||
| 35 | (latex-down-list): Use tex-mode-syntax-table when skipping parens | ||
| 36 | rather than the indentation syntax-table. | ||
| 37 | (latex-close-block): Rename from tex-close-latex-block. | ||
| 38 | (latex-split-block): New fun. | ||
| 39 | (latex-indent): Don't indent inside a verbatim block. | ||
| 40 | (latex-find-indent): Stick \begin{verbatim} to the margin. | ||
| 14 | 41 | ||
| 15 | 2002-11-08 John Wiegley <johnw@gnu.org> | 42 | 2002-11-08 John Wiegley <johnw@gnu.org> |
| 16 | 43 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index ba1709a3a7d..efe2355cfa5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-11-09 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * syntax.c (scan_sexps_forward): Update syntax table before reading | ||
| 4 | a char rather than after so we don't update the table past eob. | ||
| 5 | |||
| 1 | 2002-11-09 Dave Love <fx@gnu.org> | 6 | 2002-11-09 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * buffer.c (Fset_buffer_major_mode): Fix last change. | 8 | * buffer.c (Fset_buffer_major_mode): Fix last change. |