From: Yuri Khan <yuri.v.khan@gmail.com>
To: Karl Voit <news1142@karl-voit.at>
Cc: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: Emacs 24.5.1 has wrong charset on yanked text with Windows (was: Operating on yanked region)
Date: Wed, 18 May 2016 19:25:38 +0600 [thread overview]
Message-ID: <CAP_d_8WpweQXjv+AkaGuSdUWS9f+=_hQJQ9bV+qYqcu+BcxLFg@mail.gmail.com> (raw)
In-Reply-To: <2016-05-18T14-10-52@devnull.Karl-Voit.at>
On Wed, May 18, 2016 at 6:13 PM, Karl Voit <devnull@karl-voit.at> wrote:
>> but you should not have to jump through
>> hoops just to get text encoding right, as long as the originating
>> application puts Unicode text on clipboard. (And I’m pretty convinced
>> Outlook does.)
>
> How can I test this?
Something like this (Note: Little Programs do little to no error checking):
#include <stdio.h>
#include <Windows.h>
int main()
{
UINT format = 0;
OpenClipboard(0);
do
{
format = EnumClipboardFormats(format);
printf("%d\n", format);
} while (format);
CloseClipboard();
}
Unicode text is format 13. ANSI text is format 1. OEM text is format
7. Formats are enumerated in decreasing order of preference, i.e. most
faithful representation first.
next prev parent reply other threads:[~2016-05-18 13:25 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-18 11:07 Operating on yanked region Karl Voit
2016-05-18 11:30 ` Yuri Khan
2016-05-18 12:13 ` Emacs 24.5.1 has wrong charset on yanked text with Windows (was: Operating on yanked region) Karl Voit
2016-05-18 12:31 ` tomas
2016-05-18 15:53 ` Karl Voit
2016-05-18 18:14 ` Eli Zaretskii
2016-05-18 20:30 ` Karl Voit
2016-05-19 4:28 ` Eli Zaretskii
2016-05-19 8:38 ` tomas
2016-06-09 10:10 ` Karl Voit
2016-06-09 10:18 ` tomas
2016-05-18 13:25 ` Yuri Khan [this message]
2016-05-18 18:02 ` Operating on yanked region Eli Zaretskii
2016-05-18 17:59 ` Eli Zaretskii
2016-06-09 9:43 ` Karl Voit
2016-06-09 12:33 ` Eli Zaretskii
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAP_d_8WpweQXjv+AkaGuSdUWS9f+=_hQJQ9bV+qYqcu+BcxLFg@mail.gmail.com' \
--to=yuri.v.khan@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=news1142@karl-voit.at \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).