emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/frame.h


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/frame.h
Date: Thu, 30 Dec 2004 08:21:39 -0500

Index: emacs/src/frame.h
diff -c emacs/src/frame.h:1.107 emacs/src/frame.h:1.108
*** emacs/src/frame.h:1.107     Sun Feb  8 23:19:37 2004
--- emacs/src/frame.h   Thu Dec 30 12:24:03 2004
***************
*** 275,280 ****
--- 275,283 ----
    /* Canonical X unit.  Width of default font, in pixels.  */
    int column_width;
  
+   /* Widht of space glyph of default font, in pixels.  */
+   int space_width;
+ 
    /* Canonical Y unit.  Height of a line, in pixels.  */
    int line_height;
  
***************
*** 825,834 ****
  #define FRAME_LINE_HEIGHT(F) ((F)->line_height)
  
  /* Canonical x-unit on frame F. 
!    This value currently equals the width of the default font of F.  */
  
  #define FRAME_COLUMN_WIDTH(F) ((F)->column_width)
  
  
  /* Pixel width of areas used to display truncation marks, continuation
     marks, overlay arrows.  This is 0 for terminal frames.  */
--- 828,841 ----
  #define FRAME_LINE_HEIGHT(F) ((F)->line_height)
  
  /* Canonical x-unit on frame F. 
!    This value currently equals the average width of the default font of F.  */
  
  #define FRAME_COLUMN_WIDTH(F) ((F)->column_width)
  
+ /* Space glyph width of the default font of frame F.  */
+ 
+ #define FRAME_SPACE_WIDTH(F) ((F)->space_width)
+ 
  
  /* Pixel width of areas used to display truncation marks, continuation
     marks, overlay arrows.  This is 0 for terminal frames.  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]