aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-08-14 00:58:23 +0000
committerKenichi Handa2002-08-14 00:58:23 +0000
commit13a45e6cd871c01f013676b415fc2735a06c4b2e (patch)
tree70a606f55539c3a47dce57e16581c97c14ba02ae
parenteb1416b9bcf82289fd2ad9389bafe135da9483db (diff)
downloademacs-13a45e6cd871c01f013676b415fc2735a06c4b2e.tar.gz
emacs-13a45e6cd871c01f013676b415fc2735a06c4b2e.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog8
-rw-r--r--src/ChangeLog18
2 files changed, 26 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 170d6ce9949..171f003c78a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12002-08-14 Kenichi Handa <handa@etl.go.jp>
2
3 * select.el (xselect-convert-to-string): If TYPE is non-nil,
4 encode the selection data string. Always return cons of type and
5 string.
6 (selection-converter-alist): Add (UTF8_STRING .
7 xselect-convert-to-string).
8
12002-08-12 Stefan Monnier <monnier@cs.yale.edu> 92002-08-12 Stefan Monnier <monnier@cs.yale.edu>
2 10
3 * newcomment.el (comment-region): Force `lines' when `block' is set. 11 * newcomment.el (comment-region): Force `lines' when `block' is set.
diff --git a/src/ChangeLog b/src/ChangeLog
index 4bd0a6ffa4c..1f123331dd7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,21 @@
12002-08-14 Kenichi Handa <handa@etl.go.jp>
2
3 * xselect.c (QUTF8_STRING): New variable.
4 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
5 (x_atom_to_symbol): Likewise.
6 (x_get_local_selection): New argument local_request. If it is
7 nonzero, call handler_fn with the second arg nil.
8 (x_handle_selection_request): Call x_get_local_selection with
9 local_request 0.
10 (lisp_data_to_selection_data): Don't encode the string here.
11 (Fx_get_selection_internal): Call x_get_local_selection with
12 local_request 1.
13 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
14
15 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
16
17 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
18
12002-08-13 Richard M. Stallman <rms@gnu.org> 192002-08-13 Richard M. Stallman <rms@gnu.org>
2 20
3 * minibuf.c (Fminibufferp): New function. 21 * minibuf.c (Fminibufferp): New function.