aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2001-02-09 12:35:06 +0000
committerKenichi Handa2001-02-09 12:35:06 +0000
commit08f9976fd4815db193e98f49e04ca6f7672c95ac (patch)
treeb1acad10df32f73e15512fac4ffd1d1b2201e58d /src
parent89624b8b7c92b7e4b9230990a58c1d3101e60331 (diff)
downloademacs-08f9976fd4815db193e98f49e04ca6f7672c95ac.tar.gz
emacs-08f9976fd4815db193e98f49e04ca6f7672c95ac.zip
(struct face): Add comment for how to handle a negative value in
box_line_width.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 5dde56f6118..87946cde963 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1241,7 +1241,11 @@ struct face
1241 unsigned int pixmap_w, pixmap_h; 1241 unsigned int pixmap_w, pixmap_h;
1242 1242
1243 /* Non-zero means characters in this face have a box that thickness 1243 /* Non-zero means characters in this face have a box that thickness
1244 around them. */ 1244 around them. If it is negative, the absolute value indicates the
1245 thickness, and the horizontal lines of box (top and bottom) are
1246 drawn inside of characters glyph area. The vartical lines of box
1247 (left and right) are drawn as the same way as the case that this
1248 value is positive. */
1245 int box_line_width; 1249 int box_line_width;
1246 1250
1247 /* Type of box drawn. A value of FACE_NO_BOX means no box is drawn 1251 /* Type of box drawn. A value of FACE_NO_BOX means no box is drawn