annotate etc/Makefile @ 2725:507115aff66d

* xdisp.c (display_text_line): Apply faces to characters according to overlays and text properties; use compute_char_face to figure out what face to use, and where a new face starts. * xterm.c (dumpglyphs): Use the upper bits of the glyphs to decide which frame face to use. Call GLYPH_FOLLOW_ALIASES to make sure we're implementing the glyph table properly. If we're not using the default or mode line face, call intern_face to find a display face for the frame face selected by the glyph code. Implement underlining. Remove the `font' argument; we have to derive this from the frame and face anyway. Change all callers. * disptab.h (GLYPH_FOLLOW_ALIASES): New macro.
author Jim Blandy <jimb@redhat.com>
date Mon, 10 May 1993 00:16:34 +0000
parents bb1a01e47d85
children 3ce509de88ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
1 DESTDIR=
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
2 LIBDIR=/usr/local/lib
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
3 BINDIR=/usr/local/bin
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
4 MANDIR=/usr/man/man1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
5 MANEXT=1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
6
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
7 all:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
8
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
9 distclean:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
10 -rm -f *~ \#* DOC* core
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
11
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
12 clean:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
13 -rm -f core
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
14
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
17 vcdiff vipcard.tex xmouse.doc
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
18
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
19 unlock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
20 chmod u+w $(SOURCES)
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
21
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
22 relock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
23 chmod u-w $(SOURCES)