mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
term/x-win.el (x-selection-value): If utf8 was successful but
ctext was not, use utf8 string.
This commit is contained in:
parent
f0d73c14e2
commit
c3ff5bc11c
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-08-15 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* term/x-win.el (x-selection-value): If utf8 was successful but
|
||||
ctext was not, use utf8 string.
|
||||
|
||||
2004-08-14 Davis Herring <herring@lanl.gov>
|
||||
|
||||
* isearch.el: Remove accidental changes of March 4. Fix backing
|
||||
|
|
|
|||
|
|
@ -2212,7 +2212,8 @@ order until succeed.")
|
|||
(if utf8
|
||||
(setq text (x-select-utf8-or-ctext utf8 ctext))
|
||||
;; Othewise, choose CTEXT.
|
||||
(setq text ctext))))
|
||||
(setq text ctext))
|
||||
(setq text utf8)))
|
||||
;; If not yet decided, try STRING.
|
||||
(or text
|
||||
(setq text (condition-case nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue