aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-09-07 21:16:01 +0000
committerKim F. Storm2004-09-07 21:16:01 +0000
commit4e14f66cdf373a5caf342b3e9c4582c475593aec (patch)
tree1a5324a40ad95aa4367f088d923b3647924ff298
parentb2ea4639b0a9df9f8bda38da95b4eae04b0bb8da (diff)
downloademacs-4e14f66cdf373a5caf342b3e9c4582c475593aec.tar.gz
emacs-4e14f66cdf373a5caf342b3e9c4582c475593aec.zip
*** empty log message ***
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog5
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 @@
12004-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
12004-09-04 Eric S. Raymond <esr@thyrsus.com> 62004-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
diff --git a/etc/NEWS b/etc/NEWS
index 54ed3814819..021b9f32efa 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2402,6 +2402,11 @@ height) of the specified image.
2402The form `(+ EXPR ...)' adds up the value of the expressions. 2402The form `(+ EXPR ...)' adds up the value of the expressions.
2403The form `(- EXPR ...)' negates or subtracts the value of the expressions. 2403The 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
2406text property string that may be present at the current window
2407position. The cursor may now be placed on any character of such
2408strings 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
2406around potentially blocking or long-running code in timers 2411around potentially blocking or long-running code in timers
2407and post-command-hooks. 2412and 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 @@
12004-09-07 Kim F. Storm <storm@cua.dk> 12004-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 @@
12004-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
12004-09-07 Stefan <monnier@iro.umontreal.ca> 62004-09-07 Stefan <monnier@iro.umontreal.ca>
2 7
3 * xmenu.c (update_submenu_strings): YAILOM. 8 * xmenu.c (update_submenu_strings): YAILOM.