diff options
| author | Richard M. Stallman | 2003-09-19 14:43:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-09-19 14:43:31 +0000 |
| commit | b0f23edf1c3c7482847e07ec82ff76114d85edc0 (patch) | |
| tree | 63b925095868b01002d92500ea2151ce72922429 | |
| parent | 2b42d12a37c0a7b520f68ccb7724322f4708acd2 (diff) | |
| download | emacs-b0f23edf1c3c7482847e07ec82ff76114d85edc0.tar.gz emacs-b0f23edf1c3c7482847e07ec82ff76114d85edc0.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lispref/ChangeLog | 26 | ||||
| -rw-r--r-- | src/ChangeLog | 12 |
3 files changed, 52 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8759fab50b2..7f719447ffc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2003-09-19 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status): | ||
| 4 | New functions. | ||
| 5 | (edebug-enter, edebug-outside-excursion): Use them. | ||
| 6 | |||
| 7 | * emacs-lisp/bytecomp.el (byte-compile-warning-prefix): | ||
| 8 | Fix the condition for whether to print "In WHERE". | ||
| 9 | |||
| 10 | 2003-09-19 Jari Aalto <jari.aalto@poboxes.com> | ||
| 11 | |||
| 12 | * finder.el (finder-mode-hook): New variable. | ||
| 13 | (finder-mode): Run hook finder-mode-hook | ||
| 14 | |||
| 1 | 2003-09-18 Masatake YAMATO <jet@gyve.org> | 15 | 2003-09-18 Masatake YAMATO <jet@gyve.org> |
| 2 | 16 | ||
| 3 | * progmodes/ebrowse.el: Fix broken magic autoload comments. | 17 | * progmodes/ebrowse.el: Fix broken magic autoload comments. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 2f337e0bcfb..8433c0847e5 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2003-09-19 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * text.texi (Motion by Indent): Arg to | ||
| 4 | backward-to-indentation and forward-to-indentation is optional. | ||
| 5 | |||
| 6 | * strings.texi (Creating Strings): Add substring-no-properties. | ||
| 7 | |||
| 8 | * processes.texi | ||
| 9 | (Process Information): Add list-processes arg QUERY-ONLY. | ||
| 10 | Delete process-contact from here. | ||
| 11 | Add new status values for process-status. | ||
| 12 | Add process-get, process-put, process-plist, set-process-plist. | ||
| 13 | (Synchronous Processes): Add call-process-shell-command. | ||
| 14 | (Signals to Processes): signal-process allows process objects. | ||
| 15 | (Network): Complete rewrite. | ||
| 16 | (Network Servers, Datagrams, Low-Level Network): New nodes. | ||
| 17 | |||
| 18 | * positions.texi (Word Motion): forward-word, backward-word | ||
| 19 | arg is optional. Reword. | ||
| 20 | |||
| 21 | * abbrevs.texi (Defining Abbrevs): Index no-self-insert. | ||
| 22 | |||
| 23 | * variables.texi (Creating Buffer-Local): | ||
| 24 | Delete duplicate definition of buffer-local-value. | ||
| 25 | (File Local Variables): Explain about discarding text props. | ||
| 26 | |||
| 1 | 2003-09-11 Richard M. Stallman <rms@gnu.org> | 27 | 2003-09-11 Richard M. Stallman <rms@gnu.org> |
| 2 | 28 | ||
| 3 | * minibuf.texi (Intro to Minibuffers): Explain that the minibuffer | 29 | * minibuf.texi (Intro to Minibuffers): Explain that the minibuffer |
diff --git a/src/ChangeLog b/src/ChangeLog index 15c473c4096..00a82cc1407 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2003-09-19 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * atimer.h: Don't include lisp.h. | ||
| 4 | (P_): Define it here (as well as elsewhere). | ||
| 5 | |||
| 6 | * print.c (Fprin1_to_string): Move the PRINTPREPARE | ||
| 7 | later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks. | ||
| 8 | |||
| 9 | * data.c (Fvariable_binding_locus): New function. | ||
| 10 | (syms_of_data): defsubr it. | ||
| 11 | (Flocal_variable_p): Delete duplicate call to indirect_variable. | ||
| 12 | |||
| 1 | 2003-09-18 Dave Love <fx@gnu.org> | 13 | 2003-09-18 Dave Love <fx@gnu.org> |
| 2 | 14 | ||
| 3 | * process.c (Fnetwork_interface_info): Fix type error. | 15 | * process.c (Fnetwork_interface_info): Fix type error. |