From: storm@cua.dk (Kim F. Storm)
Cc: emacs-pretest-bug@gnu.org, emacs-devel@gnu.org,
Kenichi Handa <handa@m17n.org>
Subject: Re: Coding system conversion error
Date: Sat, 12 Feb 2005 15:34:52 +0100 [thread overview]
Message-ID: <m3zmy926er.fsf@kfs-l.imdomain.dk> (raw)
In-Reply-To: <30e47fd1ee5ebcc03c15fe8c905bc525@swipnet.se> (Jan D.'s message of "Sat, 12 Feb 2005 08:36:27 +0100")
"Jan D." <jan.h.d@swipnet.se> writes:
>> At first, I think xassert in lisp_data_to_selection_data
>> (xselect.c) is wrong. Here, obj is generated by a Lisp code
>> that may generate a multibyte string by error (as in the
>> current case). But, in general, an error in Lisp code
>> should not lead to abort. So, I propose this change. I
>> choose string_make_unibyte instead of string_as_unibyte to
>> avoid exporting Emacs' internal leading bytes.
>>
>> *** xselect.c 12 Feb 2005 09:54:46 +0900 1.148
>> --- xselect.c 12 Feb 2005 10:39:47 +0900
>> ***************
>> *** 1908,1914 ****
>> }
>> else if (STRINGP (obj))
>> {
>> ! xassert (! STRING_MULTIBYTE (obj));
>> if (NILP (type))
>> type = QSTRING;
>> *format_ret = 8;
>> --- 1908,1915 ----
>> }
>> else if (STRINGP (obj))
>> {
>> ! if (STRING_MULTIBYTE (obj))
>> ! obj = string_make_unibyte (obj);
>> if (NILP (type))
>> type = QSTRING;
>> *format_ret = 8;
>
> If the multibyte string is generated by an error and this is one of
> the places where we can detect the error, should we not keep the
> xassert?
I agree, but since the source of the error is in Lisp code, it would
be more helpful to signal an error rather than abort.
--
Kim F. Storm <storm@cua.dk> http://www.cua.dk
next prev parent reply other threads:[~2005-02-12 14:34 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <v93bwbhsql.fsf@marauder.physik.uni-ulm.de>
[not found] ` <20050205170221.ZTBD24781.mxfep02.bredband.com@coolsville.localdomain>
[not found] ` <v9k6pmhpdt.fsf@marauder.physik.uni-ulm.de>
[not found] ` <738f9db09f1986269b8f5719d45d2dd5@swipnet.se>
[not found] ` <v9fz08eglp.fsf@marauder.physik.uni-ulm.de>
[not found] ` <v9oeewweoh.fsf@marauder.physik.uni-ulm.de>
[not found] ` <4207DAF0.6000204@swipnet.se>
2005-02-08 21:50 ` Coding system conversion error (was Re: abort in x_handle_selection_event when copying text) Jan D.
2005-02-08 23:38 ` Coding system conversion error Stefan Monnier
2005-02-10 20:11 ` Jan D.
2005-02-10 20:17 ` Stefan Monnier
2005-02-10 21:30 ` Jan D.
2005-02-12 1:57 ` Kenichi Handa
2005-02-12 7:36 ` Jan D.
2005-02-12 14:34 ` Kim F. Storm [this message]
2005-02-13 0:14 ` Kenichi Handa
2005-02-13 14:23 ` Kim F. Storm
2005-02-13 16:10 ` Stefan Monnier
2005-02-14 1:02 ` Kenichi Handa
2005-02-14 5:42 ` Jan D.
2005-02-14 6:15 ` Kenichi Handa
2005-02-12 8:37 ` Richard Stallman
2005-02-12 2:01 ` Kenichi Handa
2005-02-10 6:01 ` Coding system conversion error (was Re: abort in x_handle_selection_event when copying text) Richard Stallman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m3zmy926er.fsf@kfs-l.imdomain.dk \
--to=storm@cua.dk \
--cc=emacs-devel@gnu.org \
--cc=emacs-pretest-bug@gnu.org \
--cc=handa@m17n.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.