diff options
author | Kenichi Handa <handa@m17n.org> | 1997-02-27 06:55:57 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-02-27 06:55:57 +0000 |
commit | 90da0ee653fca19d46898dbf5629c427333f627d (patch) | |
tree | d2a35f6e31912c5f655a94c9d830f92cbde26e59 /src/xselect.c | |
parent | 7b341ec208ac12b90aa872d229b4bc53ec2f738e (diff) | |
download | emacs-90da0ee653fca19d46898dbf5629c427333f627d.tar.gz |
(lisp_data_to_selection_data, selection_data_to_lisp_data):
Remove prefix "coding-system-" from coding system symbol names.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c index 60a596e6e50..3de9748b7b5 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1477,7 +1477,7 @@ selection_data_to_lisp_data (display, data, size, type, format) int bufsize, dummy; unsigned char *buf; struct coding_system coding; - Lisp_Object sym = intern ("coding-system-ctext"); + Lisp_Object sym = intern ("iso-8859-1"); setup_coding_system (Fcheck_coding_system (sym), &coding); coding.last_block = 1; @@ -1608,7 +1608,7 @@ lisp_data_to_selection_data (display, obj, int bufsize, dummy; unsigned char *buf; struct coding_system coding; - Lisp_Object sym = intern ("coding-system-ctext"); + Lisp_Object sym = intern ("iso-8859-1"); setup_coding_system (Fcheck_coding_system (sym), &coding); coding.last_block = 1; |