unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] master 9ffb6ce 5/5: Quoting fixes in lisp/internationa
@ 2015-09-04 14:51 Paul Eggert
  2015-09-04 16:23 ` Alan Mackenzie
  0 siblings, 1 reply; 9+ messages in thread
From: Paul Eggert @ 2015-09-04 14:51 UTC (permalink / raw)
  To: Alan Mackenzie; +Cc: Emacs Development

[-- Attachment #1: Type: text/plain, Size: 599 bytes --]

> isn't startup done before processing .emacs?

Yes, but (after my recent change) Emacs also looks at text-quoting-style after 
processing .emacs, and adjusts the display style accordingly.

> I don't yet have `text-quoting-style' in my .emacs

Please try adding (setq text-quoting-style 'grave) there.

> I've not seen any shadowed quotes on my screen no matter
> what I've done.

Please try loading the attached file; after it, every occurrence of X, Y and Z 
on your screen should appear in different faces that are readily legible.  If 
faces aren't working for you, we need to investigate why.

[-- Attachment #2: XYZ.el --]
[-- Type: text/x-emacs-lisp, Size: 331 bytes --]

(progn
  (unless standard-display-table
    (setq standard-display-table (make-display-table)))
  (aset standard-display-table ?X
	(vector (make-glyph-code ?X 'shadow)))
  (aset standard-display-table ?Y
	(vector (make-glyph-code ?Y 'underline)))
  (aset standard-display-table ?Z
	(vector (make-glyph-code ?Z 'escape-glyph))))
  

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-09-09  9:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-04 14:51 [Emacs-diffs] master 9ffb6ce 5/5: Quoting fixes in lisp/internationa Paul Eggert
2015-09-04 16:23 ` Alan Mackenzie
2015-09-04 17:49   ` Paul Eggert
2015-09-04 18:07     ` David Kastrup
2015-09-04 18:35       ` Paul Eggert
2015-09-04 18:53         ` David Kastrup
2015-09-04 18:53     ` Alan Mackenzie
2015-09-05 18:40       ` Paul Eggert
2015-09-09  9:38       ` Paul Eggert

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).