aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-06-17 11:14:25 +0000
committerKenichi Handa2003-06-17 11:14:25 +0000
commitb5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e (patch)
tree817e2d3b23dec8a9638e3f6b7774d02950cdf112
parentc7d9df18e4160d8d75a99b7baf7204195adec22c (diff)
downloademacs-b5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e.tar.gz
emacs-b5d2c6219692c4d5b12a1bb3db7e52a335fdbf1e.zip
*** empty log message ***
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog12
-rw-r--r--src/ChangeLog11
3 files changed, 28 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index aa7547ac07a..8866dd79d2e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -364,6 +364,11 @@ these extensions, and is now used by default for encoding and decoding
364X selections. If you don't want this support, set 364X 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
368requests X selection. The default value is nil, which means that
369Emacs requests X selection with types COMPOUND_TEXT and UTF8_STRING,
370and 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.
369The variable `hscroll-margin' determines how many columns away from 374The 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 @@
12003-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
12003-06-16 Luc Teirlinck <teirllm@mail.auburn.edu> 132003-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 @@
12003-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
12003-06-15 Stefan Monnier <monnier@cs.yale.edu> 122003-06-15 Stefan Monnier <monnier@cs.yale.edu>
2 13
3 * termhooks.h (EVENT_INIT): New macro. 14 * termhooks.h (EVENT_INIT): New macro.