diff options
| author | Kim F. Storm | 2004-09-07 21:16:01 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-09-07 21:16:01 +0000 |
| commit | 4e14f66cdf373a5caf342b3e9c4582c475593aec (patch) | |
| tree | 1a5324a40ad95aa4367f088d923b3647924ff298 | |
| parent | b2ea4639b0a9df9f8bda38da95b4eae04b0bb8da (diff) | |
| download | emacs-4e14f66cdf373a5caf342b3e9c4582c475593aec.tar.gz emacs-4e14f66cdf373a5caf342b3e9c4582c475593aec.zip | |
*** empty log message ***
| -rw-r--r-- | etc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index c3e082a096f..e2d9457db14 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-09-07 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * e/eterm.ti: Add `op' entry to enable colors in term. | ||
| 4 | * e/eterm: Regenerate. | ||
| 5 | |||
| 1 | 2004-09-04 Eric S. Raymond <esr@thyrsus.com> | 6 | 2004-09-04 Eric S. Raymond <esr@thyrsus.com> |
| 2 | 7 | ||
| 3 | * PROBLEMS: More reorganization to exile old stuff to the | 8 | * PROBLEMS: More reorganization to exile old stuff to the |
| @@ -2402,6 +2402,11 @@ height) of the specified image. | |||
| 2402 | The form `(+ EXPR ...)' adds up the value of the expressions. | 2402 | The form `(+ EXPR ...)' adds up the value of the expressions. |
| 2403 | The form `(- EXPR ...)' negates or subtracts the value of the expressions. | 2403 | The form `(- EXPR ...)' negates or subtracts the value of the expressions. |
| 2404 | 2404 | ||
| 2405 | ** Normally, the cursor is displayed at the end of any overlay and | ||
| 2406 | text property string that may be present at the current window | ||
| 2407 | position. The cursor may now be placed on any character of such | ||
| 2408 | strings by giving that character a non-nil `cursor' text property. | ||
| 2409 | |||
| 2405 | ** New macro with-local-quit temporarily sets inhibit-quit to nil for use | 2410 | ** New macro with-local-quit temporarily sets inhibit-quit to nil for use |
| 2406 | around potentially blocking or long-running code in timers | 2411 | around potentially blocking or long-running code in timers |
| 2407 | and post-command-hooks. | 2412 | and post-command-hooks. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c8da0ca418e..a37e803d11e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2004-09-07 Kim F. Storm <storm@cua.dk> | 1 | 2004-09-07 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * emacs-lisp/authors.el (authors-aliases): Add more aliases. | ||
| 4 | (authors-fixed-entries): Fix typo. | ||
| 5 | (authors-canonical-author-name): Compact multiple spaces. | ||
| 6 | Ignore trivial names (e.g. only first name). | ||
| 7 | |||
| 3 | * term.el (term-window-width): Only use full window width on | 8 | * term.el (term-window-width): Only use full window width on |
| 4 | window system if overflow-newline-into-fringe is enabled. | 9 | window system if overflow-newline-into-fringe is enabled. |
| 5 | (term-mode): Don't disable overflow-newline-into-fringe. | 10 | (term-mode): Don't disable overflow-newline-into-fringe. |
diff --git a/src/ChangeLog b/src/ChangeLog index ac72b86018a..f89f253f5f3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-09-07 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * xdisp.c (set_cursor_from_row): Fix last change. Only use 'cursor' | ||
| 4 | property from text property or overlay strings at point. | ||
| 5 | |||
| 1 | 2004-09-07 Stefan <monnier@iro.umontreal.ca> | 6 | 2004-09-07 Stefan <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * xmenu.c (update_submenu_strings): YAILOM. | 8 | * xmenu.c (update_submenu_strings): YAILOM. |