emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: blank-mode.el


From: Vinicius Jose Latorre
Subject: Re: blank-mode.el
Date: Sun, 11 Nov 2007 21:01:01 -0300
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.8) Gecko/20071009 SeaMonkey/1.1.5

Robert J. Chassell wrote:
    The char ?\x21B5 is not valid in Emacs, see:

        (char-valid-p ?\x21B5)
        ==> nil

That's true, but for my system,

    (?\n    [?\x21B5 ?\n] [?$ ?\n])

provides a dollar sign in blank-mode.el as does

This is due ?\x21B5 is not a valid char,
so blank-mode uses the other vector:

   [?$ ?\n]

Which specifies ?$ as a visual mark.

Try this command in your system:

   M-: (format "%c" ?\x21B5) RET

   (?\n    [?\x24 ?\n] [?$ ?\n])

Because ?\x24 == ?$ (valid char).

That is, both vectors have the same values.

However

    (?\n    [?\x21 ?\n] [?$ ?\n])

provides an exclamation point and

Because ?\x21 == ?! (valid char).

    (?\n    [?\xB5 ?\n] [?$ ?\n])

provides a  mu, i.e., a micro-micro (the symbol for a millionth).

Because ?\xB5 == ยต (valid char).





reply via email to

[Prev in Thread] Current Thread [Next in Thread]