diff options
| author | Kenichi Handa | 2003-06-17 11:14:25 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-06-17 11:14:25 +0000 |
| commit | b5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e (patch) | |
| tree | 817e2d3b23dec8a9638e3f6b7774d02950cdf112 | |
| parent | c7d9df18e4160d8d75a99b7baf7204195adec22c (diff) | |
| download | emacs-b5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e.tar.gz emacs-b5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
3 files changed, 28 insertions, 0 deletions
| @@ -364,6 +364,11 @@ these extensions, and is now used by default for encoding and decoding | |||
| 364 | X selections. If you don't want this support, set | 364 | X selections. If you don't want this support, set |
| 365 | `selection-coding-system' to `compound-text'. | 365 | `selection-coding-system' to `compound-text'. |
| 366 | 366 | ||
| 367 | ** The new variable `x-select-request-type' controls how Emacs | ||
| 368 | requests X selection. The default value is nil, which means that | ||
| 369 | Emacs requests X selection with types COMPOUND_TEXT and UTF8_STRING, | ||
| 370 | and use the more appropriately result. | ||
| 371 | |||
| 367 | +++ | 372 | +++ |
| 368 | ** The parameters of automatic hscrolling can now be customized. | 373 | ** The parameters of automatic hscrolling can now be customized. |
| 369 | The variable `hscroll-margin' determines how many columns away from | 374 | The variable `hscroll-margin' determines how many columns away from |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f8e46dcc148..cf4c24bdd2a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2003-06-17 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * term/x-win.el (x-select-request-type): New variable. | ||
| 4 | (x-select-utf8-or-ctext): New function. | ||
| 5 | (x-selection-value): New function. | ||
| 6 | (x-cut-buffer-or-selection-value): Call x-selection-value to get | ||
| 7 | a selection data. Set next-selection-coding-system to nil. | ||
| 8 | |||
| 9 | * select.el (x-get-selection): If the string returned by | ||
| 10 | x-get-selection-internal has text property `foreign-selection', | ||
| 11 | decode it while preserving that property. | ||
| 12 | |||
| 1 | 2003-06-16 Luc Teirlinck <teirllm@mail.auburn.edu> | 13 | 2003-06-16 Luc Teirlinck <teirllm@mail.auburn.edu> |
| 2 | 14 | ||
| 3 | * simple.el (vis-mode): New function. | 15 | * simple.el (vis-mode): New function. |
diff --git a/src/ChangeLog b/src/ChangeLog index 08b9ec38928..c3c2ed1dd39 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2003-06-17 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * Makefile.in (xselect.o): Don't depend on charset.h, coding.h, | ||
| 4 | composite.h. | ||
| 5 | |||
| 6 | * xselect.c: Don't include charset.h, coding.h, composite.h. | ||
| 7 | (Qforeign_selection): New variable. | ||
| 8 | (syms_of_xselect): Intern and static it. | ||
| 9 | (selection_data_to_lisp_data): Return a unibyte string made from | ||
| 10 | data with `foreign-selection' text property. | ||
| 11 | |||
| 1 | 2003-06-15 Stefan Monnier <monnier@cs.yale.edu> | 12 | 2003-06-15 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 13 | ||
| 3 | * termhooks.h (EVENT_INIT): New macro. | 14 | * termhooks.h (EVENT_INIT): New macro. |