diff options
| author | Kim F. Storm | 2004-09-02 22:55:59 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-09-02 22:55:59 +0000 |
| commit | 46540080eac5c7efa800b5646a4e0a2eea450c4f (patch) | |
| tree | 5eee9ef7cc27dc9598c987bf08df613cebc5e630 | |
| parent | cc2734ee7602101a6dc15e2a69edf1881ba4c6c6 (diff) | |
| download | emacs-46540080eac5c7efa800b5646a4e0a2eea450c4f.tar.gz emacs-46540080eac5c7efa800b5646a4e0a2eea450c4f.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-09-02 Juri Linkov <juri@jurta.org> | 12 | 2004-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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 7 | 2004-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 | ||