diff options
| author | Kenichi Handa | 2000-11-06 12:35:44 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-11-06 12:35:44 +0000 |
| commit | 0caef0ecf7589c2c49c5f74f8669492b4d6f6862 (patch) | |
| tree | 14a81f35d1be2c084e983e464f24eacd444a2fe5 /src | |
| parent | 40add26d11b5446339255f1eb99aa18e9ce1c3a7 (diff) | |
| download | emacs-0caef0ecf7589c2c49c5f74f8669492b4d6f6862.tar.gz emacs-0caef0ecf7589c2c49c5f74f8669492b4d6f6862.zip | |
Include composite.h.
(selection_data_to_lisp_data): Call compose_chars_in_text on STR.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xselect.c b/src/xselect.c index ac260160781..289d01e03b9 100644 --- a/src/xselect.c +++ b/src/xselect.c | |||
| @@ -31,6 +31,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 31 | #include "charset.h" | 31 | #include "charset.h" |
| 32 | #include "coding.h" | 32 | #include "coding.h" |
| 33 | #include "process.h" | 33 | #include "process.h" |
| 34 | #include "composite.h" | ||
| 34 | 35 | ||
| 35 | #define CUT_BUFFER_SUPPORT | 36 | #define CUT_BUFFER_SUPPORT |
| 36 | 37 | ||
| @@ -1551,6 +1552,7 @@ selection_data_to_lisp_data (display, data, size, type, format) | |||
| 1551 | xfree (buf); | 1552 | xfree (buf); |
| 1552 | Vlast_coding_system_used = coding.symbol; | 1553 | Vlast_coding_system_used = coding.symbol; |
| 1553 | } | 1554 | } |
| 1555 | compose_chars_in_text (0, XSTRING (str)->size, str); | ||
| 1554 | return str; | 1556 | return str; |
| 1555 | } | 1557 | } |
| 1556 | /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to | 1558 | /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to |