diff options
| author | Richard M. Stallman | 2007-03-04 18:29:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-03-04 18:29:07 +0000 |
| commit | d89abe751ce226c914e12cc1fa6a04f02be6a961 (patch) | |
| tree | edf4c8545424807b602cef05cc6c8c53930ef8f2 | |
| parent | f8e2f51366abae0fcf14696d5947f01ca3455419 (diff) | |
| download | emacs-d89abe751ce226c914e12cc1fa6a04f02be6a961.tar.gz emacs-d89abe751ce226c914e12cc1fa6a04f02be6a961.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 28 | ||||
| -rw-r--r-- | lispref/ChangeLog | 23 | ||||
| -rw-r--r-- | man/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
5 files changed, 66 insertions, 4 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 835fef666b6..beee10a8e3c 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -50,10 +50,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. | |||
| 50 | ** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin. | 50 | ** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin. |
| 51 | (Did we decide that is unreproducible?) | 51 | (Did we decide that is unreproducible?) |
| 52 | 52 | ||
| 53 | ** make-network-process :nowait t doesn't work for non-local targets | ||
| 54 | on Windows. This has been "fixed" for Emacs 22 by defining | ||
| 55 | BROKEN_NON_BLOCKING_CONNECT in ms-w32.h. | ||
| 56 | |||
| 57 | 53 | ||
| 58 | * BUGS | 54 | * BUGS |
| 59 | 55 | ||
| @@ -67,6 +63,13 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. | |||
| 67 | 63 | ||
| 68 | ** daniel@bigwalter.net, Feb 25: Echoing of keys and process I/O | 64 | ** daniel@bigwalter.net, Feb 25: Echoing of keys and process I/O |
| 69 | 65 | ||
| 66 | ** rudalics@gmx.at, Feb 27: undo-information kept for *occur* | ||
| 67 | |||
| 68 | ** Failure to build on Solaris. | ||
| 69 | |||
| 70 | ** Failure to detect strerror on Red Hat GNU/Linux | ||
| 71 | jjd@vegas.jjd.com, Mar 2. | ||
| 72 | |||
| 70 | * DOCUMENTATION | 73 | * DOCUMENTATION |
| 71 | 74 | ||
| 72 | ** Check the Emacs Tutorial. | 75 | ** Check the Emacs Tutorial. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df0dc1e8220..9f46db997e3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,31 @@ | |||
| 1 | 2007-03-04 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/cperl-mode.el (cperl-mode): | ||
| 4 | Modify cperl-compilation-error-regexp-alist by appending. | ||
| 5 | |||
| 6 | * emacs-lisp/edebug.el (edebug-kill-buffer): New function. | ||
| 7 | (edebug-mode): Add the hook. | ||
| 8 | (edebug-recursive-edit): Remove the hook on exiting. | ||
| 9 | |||
| 10 | * type-break.el (type-break-get-previous-time): | ||
| 11 | Handle end-of-file errors specially | ||
| 12 | so they don't get reported wrong in .emacs. | ||
| 13 | |||
| 14 | * startup.el (fancy-splash-text): Clarify text. | ||
| 15 | |||
| 16 | * simple.el (beginning-of-buffer, end-of-buffer): | ||
| 17 | Avoid treating plain C-u like numeric arg. | ||
| 18 | |||
| 19 | * simple.el (completion-setup-function): Don't set | ||
| 20 | default-directory to nil. | ||
| 21 | |||
| 22 | * shell.el (shell-dirstack-query): Doc fix. | ||
| 23 | |||
| 24 | * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line): | ||
| 25 | Don't select the window -- pass it to primitives instead. | ||
| 26 | |||
| 27 | * faces.el (minibuffer-prompt): Use medium blue by default. | ||
| 28 | |||
| 1 | 2007-03-04 David Kastrup <dak@gnu.org> | 29 | 2007-03-04 David Kastrup <dak@gnu.org> |
| 2 | 30 | ||
| 3 | * jit-lock.el (jit-lock-stealth-time): Change default to nil. | 31 | * jit-lock.el (jit-lock-stealth-time): Change default to nil. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index bfae9080054..5a47cc84f5c 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2007-03-04 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * syntax.texi (Control Parsing): Minor clarification. | ||
| 4 | |||
| 5 | * strings.texi (Formatting Strings): Clarify width, precision, flags. | ||
| 6 | |||
| 7 | * sequences.texi (Sequence Functions): Move string-bytes away, | ||
| 8 | add xref. | ||
| 9 | |||
| 10 | * nonascii.texi (Text Representations): Move string-bytes here. | ||
| 11 | |||
| 12 | * modes.texi (Major Mode Conventions): Fundamental mode is exception. | ||
| 13 | |||
| 14 | * minibuf.texi (Basic Completion): Minor clarification. | ||
| 15 | |||
| 16 | * markers.texi (The Mark): Clarify existence vs activation of mark. | ||
| 17 | Other cleanup. | ||
| 18 | |||
| 19 | * display.texi (Finding Overlays): Write better example. | ||
| 20 | |||
| 21 | * compile.texi (Eval During Compile): Clarify putting macros | ||
| 22 | in eval-when-compile. | ||
| 23 | |||
| 1 | 2007-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 24 | 2007-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2 | 25 | ||
| 3 | * loading.texi (How Programs Do Loading): Fix anchor position at | 26 | * loading.texi (How Programs Do Loading): Fix anchor position at |
diff --git a/man/ChangeLog b/man/ChangeLog index ad357f99680..9244182c295 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-03-04 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * custom.texi (Safe File Variables): Minor correction. | ||
| 4 | |||
| 1 | 2007-02-27 Katsumi Yamaoka <yamaoka@jpl.org> | 5 | 2007-02-27 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 6 | ||
| 3 | * gnus.texi (NNTP): Mention nntp-never-echoes-commands and | 7 | * gnus.texi (NNTP): Mention nntp-never-echoes-commands and |
diff --git a/src/ChangeLog b/src/ChangeLog index 10d0fa9d828..cea6434be30 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-03-04 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * window.c (Fdisplay_buffer): Doc fix. | ||
| 4 | |||
| 1 | 2007-03-03 Glenn Morris <rgm@gnu.org> | 5 | 2007-03-03 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Makefile.in: Don't clear out LIB_X11_LIB, since XFT_LIBS does | 7 | * Makefile.in: Don't clear out LIB_X11_LIB, since XFT_LIBS does |