diff options
| author | Stefan Monnier | 2003-02-26 16:34:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-02-26 16:34:27 +0000 |
| commit | 6a097c0c18b60de5d659774986e8061c242dcd56 (patch) | |
| tree | 428d4d17f7725139833d5ddeb4064e3e7dd04f88 | |
| parent | bca8c7be06fe0f6143a8e17d589760715386e4cc (diff) | |
| download | emacs-6a097c0c18b60de5d659774986e8061c242dcd56.tar.gz emacs-6a097c0c18b60de5d659774986e8061c242dcd56.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
2 files changed, 17 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b522e7a3656..4ec81666d0c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -10,9 +10,8 @@ | |||
| 10 | 10 | ||
| 11 | 2003-02-25 Andreas Schwab <schwab@suse.de> | 11 | 2003-02-25 Andreas Schwab <schwab@suse.de> |
| 12 | 12 | ||
| 13 | * progmodes/make-mode.el (makefile-font-lock-keywords): Protect | 13 | * progmodes/make-mode.el (makefile-font-lock-keywords): Protect shell |
| 14 | shell variable references by requireing that $ is not preceded by | 14 | variable references by requireing that $ is not preceded by another $. |
| 15 | another $. | ||
| 16 | 15 | ||
| 17 | 2003-02-25 Kenichi Handa <handa@m17n.org> | 16 | 2003-02-25 Kenichi Handa <handa@m17n.org> |
| 18 | 17 | ||
| @@ -22,14 +21,19 @@ | |||
| 22 | 21 | ||
| 23 | * language/mlm-util.el (mlm-char-glyph): Fix more rules. | 22 | * language/mlm-util.el (mlm-char-glyph): Fix more rules. |
| 24 | 23 | ||
| 24 | 2003-02-24 Stefan Monnier <monnier@cs.yale.edu> | ||
| 25 | |||
| 26 | * progmodes/simula.el: Move abbrev loading to after the fun it uses. | ||
| 27 | (simula-install-standard-abbrevs): Use dolist. | ||
| 28 | Use system-flag when calling define-abbrev. | ||
| 29 | |||
| 25 | 2003-02-24 Dave Love <fx@gnu.org> | 30 | 2003-02-24 Dave Love <fx@gnu.org> |
| 26 | 31 | ||
| 27 | * obsolete/cplus-md.el: Deleted. (Requires removed c-mode.el.) | 32 | * obsolete/cplus-md.el: Delete. (Requires removed c-mode.el.) |
| 28 | 33 | ||
| 29 | * env.el (read-envvar-name): Decode names. | 34 | * env.el (read-envvar-name): Decode names. |
| 30 | (substitute-env-vars): Use eval-when-compile and char class. | 35 | (substitute-env-vars): Use eval-when-compile and char class. |
| 31 | (setenv): Doc fix. Encode the data (after checking that's | 36 | (setenv): Doc fix. Encode the data (after checking that's possible). |
| 32 | possible). | ||
| 33 | (getenv): Encode the name and decode the result. | 37 | (getenv): Encode the name and decode the result. |
| 34 | 38 | ||
| 35 | 2003-02-24 Ken Manheimer <klm@zope.com> | 39 | 2003-02-24 Ken Manheimer <klm@zope.com> |
| @@ -80,7 +84,7 @@ | |||
| 80 | 84 | ||
| 81 | * progmodes/cperl-mode.el: Merge changes from CPerl-5.0. | 85 | * progmodes/cperl-mode.el: Merge changes from CPerl-5.0. |
| 82 | (toplevel): Require man. | 86 | (toplevel): Require man. |
| 83 | (condition-case): Don't autoload tmm-prompt (it's in loaddefs.el). | 87 | Don't autoload tmm-prompt (it's in loaddefs.el). |
| 84 | (cperl-electric-backspace-untabify): New var. | 88 | (cperl-electric-backspace-untabify): New var. |
| 85 | (cperl-electric-backspace): Use it. | 89 | (cperl-electric-backspace): Use it. |
| 86 | (cperl-vc-header-alist): Extract numeric version from the Id. | 90 | (cperl-vc-header-alist): Extract numeric version from the Id. |
diff --git a/src/ChangeLog b/src/ChangeLog index 6add287016b..9534e7e6f78 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -16,6 +16,10 @@ | |||
| 16 | * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer | 16 | * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer |
| 17 | process only when "subprocesses" is defined. | 17 | process only when "subprocesses" is defined. |
| 18 | 18 | ||
| 19 | 2003-02-24 Stefan Monnier <monnier@cs.yale.edu> | ||
| 20 | |||
| 21 | * syntax.c (back_comment): Only check nestedness of 2nd char if needed. | ||
| 22 | |||
| 19 | 2003-02-24 Juanma Barranquero <lektu@terra.es> | 23 | 2003-02-24 Juanma Barranquero <lektu@terra.es> |
| 20 | 24 | ||
| 21 | * callint.c (fix_command): Declare as static void and move before | 25 | * callint.c (fix_command): Declare as static void and move before |
| @@ -513,8 +517,8 @@ | |||
| 513 | (notice_overwritten_cursor): Consider the cursor image erased if | 517 | (notice_overwritten_cursor): Consider the cursor image erased if |
| 514 | the output area intersects the cursor image in y-direction. | 518 | the output area intersects the cursor image in y-direction. |
| 515 | 519 | ||
| 516 | * w32term.c (note_mode_line_or_margin_highlight): Renamed from | 520 | * w32term.c (note_mode_line_or_margin_highlight): Rename from |
| 517 | note_mode_line_highlight and extended. | 521 | note_mode_line_highlight and extend. |
| 518 | 522 | ||
| 519 | * w32term.c (last_window): New variable. | 523 | * w32term.c (last_window): New variable. |
| 520 | (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs. | 524 | (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs. |