@item Internal Border
The internal border is a border drawn by Emacs around the inner frame
-(see below). The specification of its appearance depends on whether
-the given frame is a child frame (@pxref{Child Frames}) or not.
+(see below). The specification of its appearance depends on whether
+or not the given frame is a child frame (@pxref{Child Frames}).
For normal frames its width is specified by the @code{internal-border-width}
-frame parameter (@pxref{Layout Parameters}) and its color is specified by the
+frame parameter (@pxref{Layout Parameters}), and its color is specified by the
background of the @code{internal-border} face.
For child frames its width is specified by the @code{child-frame-border-width}
-frame parameter (but will use the the @code{internal-border-width} parameter as
-a fallback) and its color is specified by the background of the
+frame parameter (but will use the @code{internal-border-width} parameter as
+fallback), and its color is specified by the background of the
@code{child-frame-border} face.
@item Inner Frame
avoids slowing them down when a lot of these hooks are defined.
** New face 'child-frame-border' and frame parameter 'child-frame-border-width'.
-The face and width of child frames borders can no be determined
-separately from thos of normal frames. To minimize backwards
+The face and width of child frames borders can now be determined
+separately from those of normal frames. To minimize backward
incompatibility, child frames without a 'child-frame-border-width'
-parameter will fall back to using 'internal-border-width'. However the
-new 'child-frame-border' face does constitute a breaking change since
-child frames' borders no longer use the 'internal-border' face.
+parameter will fall back to using 'internal-border-width'. However,
+the new 'child-frame-border' face does constitute a breaking change
+since child frames' borders no longer use the 'internal-border' face.
---
** The obsolete function 'thread-alive-p' has been removed.
/* Border width of the frame window as known by the (X) window system. */
int border_width;
- /* Width of child frames' internal border. Acts as
+ /* Width of child frames' internal border. Acts as
internal_border_width for child frames. */
int child_frame_border_width;
}
/* Pixel-width of internal border. Uses child_frame_border_width for
- child frames if possible and falls back on internal_border_width
+ child frames if possible, and falls back on internal_border_width
otherwise. */
INLINE int
FRAME_INTERNAL_BORDER_WIDTH (struct frame *f)
* w32_set_child_frame_border_width:
*
* Set width of child frame F's internal border to ARG pixels.
- * ARG < 0 is * treated like ARG = 0.
+ * ARG < 0 is treated like ARG = 0.
*/
static void
w32_set_child_frame_border_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)