diff options
| author | Stefan Monnier | 2004-03-29 00:53:28 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-29 00:53:28 +0000 |
| commit | adb3b3532f2e75632af79c86343cac745567ea72 (patch) | |
| tree | 76bd2b07bb87f7a92734ddc855a7497eb67544ba | |
| parent | ed16fb98ca7da70243dbd42ccd76e08fa34d8966 (diff) | |
| download | emacs-adb3b3532f2e75632af79c86343cac745567ea72.tar.gz emacs-adb3b3532f2e75632af79c86343cac745567ea72.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | src/ChangeLog | 13 |
2 files changed, 24 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b1675af3216..2857c041aba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * subr.el (interactive-form): Delete. Now implemented in C. | ||
| 4 | |||
| 5 | * pcvs.el (cvs-parse-process): Workaround for Darwin. | ||
| 6 | |||
| 7 | * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'. | ||
| 8 | (vc-diff-label): New fun. | ||
| 9 | (vc-diff-internal): Use it. | ||
| 10 | |||
| 11 | * progmodes/gdb-ui.el (gdb-post-prompt): Fix test. | ||
| 12 | |||
| 1 | 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 13 | 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2 | 14 | ||
| 3 | * printing.el (pr-update-menus): Modify interactive declaration. | 15 | * printing.el (pr-update-menus): Modify interactive declaration. |
diff --git a/src/ChangeLog b/src/ChangeLog index 357060188a5..4e317988772 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * eval.c (Fcommandp): Simplify. | ||
| 4 | |||
| 5 | * data.c (Finteractive_form): Rename from Fsubr_interactive_form. | ||
| 6 | Extend to handle all kinds of functions. | ||
| 7 | |||
| 8 | * lisp.h (Finteractive_form): Declare. | ||
| 9 | |||
| 10 | * callint.c (Fcall_interactively): Use it. | ||
| 11 | |||
| 1 | 2004-03-26 Kim F. Storm <storm@cua.dk> | 12 | 2004-03-26 Kim F. Storm <storm@cua.dk> |
| 2 | 13 | ||
| 3 | * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error | 14 | * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error |
| @@ -39,7 +50,7 @@ | |||
| 39 | * image.c (Qcenter): Move to xdisp.c. | 50 | * image.c (Qcenter): Move to xdisp.c. |
| 40 | 51 | ||
| 41 | * xdisp.c (Qcenter): Declare here. | 52 | * xdisp.c (Qcenter): Declare here. |
| 42 | (syms_of_xdisp): intern and staticpro it. | 53 | (syms_of_xdisp): Intern and staticpro it. |
| 43 | (handle_single_display_prop): Allow space display property on all | 54 | (handle_single_display_prop): Allow space display property on all |
| 44 | platforms. | 55 | platforms. |
| 45 | (display_mode_line): Set mode_line_p before displaying line. | 56 | (display_mode_line): Set mode_line_p before displaying line. |