aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-09-02 22:55:59 +0000
committerKim F. Storm2004-09-02 22:55:59 +0000
commit46540080eac5c7efa800b5646a4e0a2eea450c4f (patch)
tree5eee9ef7cc27dc9598c987bf08df613cebc5e630
parentcc2734ee7602101a6dc15e2a69edf1881ba4c6c6 (diff)
downloademacs-46540080eac5c7efa800b5646a4e0a2eea450c4f.tar.gz
emacs-46540080eac5c7efa800b5646a4e0a2eea450c4f.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog11
-rw-r--r--src/ChangeLog8
2 files changed, 18 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 015fb9253c5..2877097c39a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,14 @@
12004-09-03 Kim F. Storm <storm@cua.dk>
2
3 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
4 point is set (and displayed) inside rectangle.
5 (cua--rectangle-operation): Fix for highlight of empty lines.
6 (cua--highlight-rectangle): Fix highlight for tabs.
7 Position cursor at left/right edge of rectangle using new `cursor'
8 property on overlay strings.
9 (cua--indent-rectangle): Don't tabify.
10 (cua-rotate-rectangle): Ignore that point has moved.
11
12004-09-02 Juri Linkov <juri@jurta.org> 122004-09-02 Juri Linkov <juri@jurta.org>
2 13
3 * progmodes/compile.el (compilation-buffer-name): Compare major 14 * progmodes/compile.el (compilation-buffer-name): Compare major
diff --git a/src/ChangeLog b/src/ChangeLog
index a2ae10d158a..c2999317d03 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12004-09-03 Kim F. Storm <storm@cua.dk>
2
3 * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
4 in overlay or text-property strings; set cursor on corresponding
5 glyph rather than at end of the string.
6
12004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 72004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 8
3 * term/mac-win.el: Add ASCII equivalents for some function keys. 9 * term/mac-win.el: Add ASCII equivalents for some function keys.
4 (mode-line-frame-identification): Sync with x-win.el. 10 (mode-line-frame-identification): Sync with x-win.el.
5 11