From: "B. T. Raven" <nihil@nihilo.net>
To: help-gnu-emacs@gnu.org
Subject: Re: ncr (numeric character reference) to unicode
Date: Wed, 15 Apr 2009 20:42:49 -0500 [thread overview]
Message-ID: <0smdnSjaEryJEHvUnZ2dnUVZ_r2dnZ2d@sysmatrix.net> (raw)
In-Reply-To: <mailman.5401.1239831823.31690.help-gnu-emacs@gnu.org>
Stephen Berman wrote:
> On Tue, 14 Apr 2009 11:42:09 -0500 "B. T. Raven" <nihil@nihilo.net> wrote:
>
>> Miles Bader wrote:
>>> "B. T. Raven" <nihil@nihilo.net> writes:
>>>> Does any of you know whether nxhtml has the capability to convert
>>>> sequences like this:
>>>>
>>>> שַׁלוֹם.
>>>> (shalom in Hebrew)
>>> The following should work:
>>>
>>> (defun expand-html-encoded-chars (start end)
>>> (interactive "r")
>>> (save-excursion
>>> (goto-char start)
>>> (while (re-search-forward "&#\\([0-9]+\\);" end t)
>>> (replace-match (char-to-string
>>> (decode-char 'ucs (string-to-number (match-string 1))) )
>>> t t))))
>>>
>>> -Miles
>>>
>> Thanks, Eli and Miles. The conversion works fine (with uncomposed glyphs, that
>> is, points as separate characters, same as in the html codes). I referenced
>> the command in an alias:
>>
>> (defalias 'xhc 'expand-html-encoded-chars)
>>
>> and then tried to do the same with this function:
>>
>> (defun reverse-string (beg end)
>> (interactive "r")
>> (setq str (buffer-substring beg end))
>> (apply #'string (nreverse (string-to-list str))))
>>
>> but it doesn't seem to work, although it doesn't produce errors in a traceback
>> buffer. What am I missing?
>>
>> Thanks,
>>
>> Ed
>
> Does this do what you want?
>
> (defun reverse-string (beg end)
> (interactive "r")
> (xhc beg end)
> (let* ((beg (region-beginning))
> (end (region-end))
> (str1 (buffer-substring beg end))
> (str2 (apply #'string (nreverse (string-to-list str1)))))
> (replace-string str1 str2 nil beg end)))
>
> Steve Berman
>
>
>
That would probably do a little more than I want. Miles' expand html
function is only needed if someone sends these ncr sequences in email.
Btw, why are beg and end calculated in the function if they are passed
to it? This almost does what I want:
(defun reverse-bufsubstring (beg end)
(interactive "r")
(let* (
(str1 (buffer-substring beg end))
(str2 (apply #'string (nreverse (string-to-list str1)))))
(replace-string str1 str2 nil beg end)))
except that it converts
same
one
as
before
into this:
erofeb
sa
eno
emas
so now that has to be reversed line by line rather than character by
character. Anyway, all of this is just a kludge until the gurus come up
with a real bidi functionality.
Thanks again,
Ed
next prev parent reply other threads:[~2009-04-16 1:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-13 20:17 ncr (numeric character reference) to unicode B. T. Raven
2009-04-13 20:52 ` Eli Zaretskii
2009-04-14 3:07 ` Miles Bader
2009-04-14 16:42 ` B. T. Raven
2009-04-15 21:43 ` Stephen Berman
[not found] ` <mailman.5401.1239831823.31690.help-gnu-emacs@gnu.org>
2009-04-16 1:42 ` B. T. Raven [this message]
2009-04-16 4:35 ` Kevin Rodgers
2009-04-16 13:23 ` Stephen Berman
2009-04-16 4:20 ` Kevin Rodgers
[not found] ` <mailman.5427.1239855645.31690.help-gnu-emacs@gnu.org>
2009-04-17 3:39 ` B. T. Raven
2009-04-17 15:19 ` Stephen Berman
[not found] ` <mailman.5538.1239981609.31690.help-gnu-emacs@gnu.org>
2009-04-17 23:20 ` B. T. Raven
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=0smdnSjaEryJEHvUnZ2dnUVZ_r2dnZ2d@sysmatrix.net \
--to=nihil@nihilo.net \
--cc=help-gnu-emacs@gnu.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.