GNU bug report logs -
#20545
New minor mode Electric Quote
Previous Next
Reported by: Paul Eggert <eggert <at> cs.ucla.edu>
Date: Sun, 10 May 2015 23:57:02 UTC
Severity: wishlist
Tags: patch
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
Message #38 received at 20545 <at> debbugs.gnu.org (full text, mbox):
> Date: Wed, 13 May 2015 07:49:47 -0700
> From: Paul Eggert <eggert <at> cs.ucla.edu>
> CC: Eli Zaretskii <eliz <at> gnu.org>, 20545 <at> debbugs.gnu.org
>
> In this situation, the attached patch to Emacs (which would have to
> be improved before installing) has the behavior of using underlined
> ` and ' to render curved single quotes.
>
> diff --git a/src/term.c b/src/term.c
> index d2a9c3d..86ca4d8 100644
> --- a/src/term.c
> +++ b/src/term.c
> @@ -1867,6 +1867,10 @@ produce_glyphless_glyph (struct it *it, Lisp_Object acronym)
> : it->c <= MAX_UNICODE_CHAR ? "\\U%06X"
> : "\\x%06X"),
> it->c + 0u);
> + if (it->c == 0x2018)
> + buf[0] = '`', len = 1;
> + else if (it->c == 0x2019)
> + buf[0] = '\'', len = 1;
I think we should use a display table here, like we do with other
special characters. Hard-coding the replacements sounds un-Emacsy.
Thanks.
This bug report was last modified 9 years and 361 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.