emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/doc/lispref ChangeLog hooks.texi internal...


From: Chong Yidong
Subject: [Emacs-diffs] emacs/doc/lispref ChangeLog hooks.texi internal...
Date: Mon, 04 May 2009 23:25:39 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/05/04 23:25:38

Modified files:
        doc/lispref    : ChangeLog hooks.texi internals.texi locals.texi 

Log message:
        * hooks.texi (Standard Hooks): Add abbrev-expand-functions.
        Remove obsoleted pre-abbrev-expand-hook.
        
        * locals.texi (Standard Buffer-Local Variables): Consolidate table
        entries.
        
        * internals.texi (Window Internals): Synch field names to window.h.
        (Process Internals): Synch field names to process.h.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/ChangeLog?cvsroot=emacs&r1=1.267&r2=1.268
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/hooks.texi?cvsroot=emacs&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/internals.texi?cvsroot=emacs&r1=1.7&r2=1.8
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/locals.texi?cvsroot=emacs&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/ChangeLog,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -b -r1.267 -r1.268
--- ChangeLog   4 May 2009 04:07:11 -0000       1.267
+++ ChangeLog   4 May 2009 23:25:38 -0000       1.268
@@ -1,8 +1,16 @@
 2009-05-04  Chong Yidong  <address@hidden>
 
+       * hooks.texi (Standard Hooks): Add abbrev-expand-functions.
+       Remove obsoleted pre-abbrev-expand-hook.
+
+       * locals.texi (Standard Buffer-Local Variables): Consolidate table
+       entries.
+
        * internals.texi (Object Internals): Don't assume 32-bit machines
        are the norm.
        (Buffer Internals): Consolidate table entries for readability.
+       (Window Internals): Synch field names to window.h.
+       (Process Internals): Synch field names to process.h.
 
 2009-04-29  Chong Yidong  <address@hidden>
 

Index: hooks.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/hooks.texi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- hooks.texi  17 Jan 2009 18:44:33 -0000      1.8
+++ hooks.texi  4 May 2009 23:25:38 -0000       1.9
@@ -39,6 +39,9 @@
 @c it here.
 
 @table @code
address@hidden abbrev-expand-functions
address@hidden Expansion}.
+
 @item activate-mark-hook
 @xref{The Mark}.
 
@@ -275,9 +278,6 @@
 @item post-command-hook
 @xref{Command Overview}.
 
address@hidden pre-abbrev-expand-hook
address@hidden Expansion}.
-
 @item pre-command-hook
 @xref{Command Overview}.
 

Index: internals.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/internals.texi,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- internals.texi      4 May 2009 04:07:28 -0000       1.7
+++ internals.texi      4 May 2009 23:25:38 -0000       1.8
@@ -1064,7 +1064,6 @@
 @itemx fill_column
 @itemx left_margin
 @itemx auto_fill_function
address@hidden buffer_file_type
 @itemx truncate_lines
 @itemx word_wrap
 @itemx ctl_arrow
@@ -1126,47 +1125,40 @@
 no access to the parent windows; they operate on the windows at the
 leaves of the tree, which actually display buffers.
 
-The following four fields also describe the window tree structure.
-
 @item hchild
-In a window subdivided horizontally by child windows, the leftmost child.
-Otherwise, @code{nil}.
-
address@hidden vchild
-In a window subdivided vertically by child windows, the topmost child.
-Otherwise, @code{nil}.
address@hidden vchild
+These fields contain the window's leftmost child and its topmost child
+respectively.  @code{hchild} is used if the window is subdivided
+horizontally by child windows, and @code{vchild} if it is subdivided
+vertically.
 
 @item next
-The next sibling of this window.  It is @code{nil} in a window that is
-the rightmost or bottommost of a group of siblings.
-
address@hidden prev
-The previous sibling of this window.  It is @code{nil} in a window that
-is the leftmost or topmost of a group of siblings.
-
address@hidden left
-This is the left-hand edge of the window, measured in columns.  (The
-leftmost column on the screen is @w{column 0}.)
-
address@hidden top
-This is the top edge of the window, measured in lines.  (The top line on
-the screen is @w{line 0}.)
-
address@hidden height
-The height of the window, measured in lines.
-
address@hidden width
-The width of the window, measured in columns.  This width includes the
-scroll bar and fringes, and/or the separator line on the right of the
-window (if any).
address@hidden prev
+The next sibling and previous sibling of this window.  @code{next} is
address@hidden if the window is the rightmost or bottommost in its group;
address@hidden is @code{nil} if it is the leftmost or topmost in its
+group.
+
address@hidden left_col
+The left-hand edge of the window, measured in columns, relative to the
+leftmost column in the frame (column 0).
+
address@hidden top_line
+The top edge of the window, measured in lines, relative to the topmost
+line in the frame (line 0).
+
address@hidden total_cols
address@hidden total_lines
+The width and height of the window, measured in columns and lines
+respectively.  The width includes the scroll bar and fringes, and/or
+the separator line on the right of the window (if any).
 
 @item buffer
-The buffer that the window is displaying.  This may change often during
-the life of the window.
+The buffer that the window is displaying.
 
 @item start
-The position in the buffer that is the first character to be displayed
-in the window.
+A marker pointing to the position in the buffer that is the first
+character displayed in the window.
 
 @item pointm
 @cindex window point internals
@@ -1189,13 +1181,6 @@
 address@hidden means current value of @code{start} was the beginning of a line
 when it was chosen.
 
address@hidden too_small_ok
address@hidden means don't delete this window for becoming ``too small.''
-
address@hidden height_fixed_p
-This field is temporarily set to 1 to fix the height of the selected
-window when the echo area is resized.
-
 @item use_time
 This is the last time that the window was selected.  The function
 @code{get-lru-window} uses this field.
@@ -1223,18 +1208,10 @@
 This window's vertical scroll bar.
 
 @item left_margin_width
-The width of the left margin in this window, or @code{nil} not to
-specify it (in which case the buffer's value of @code{left-margin-width}
-is used.
-
address@hidden right_margin_width
-Likewise for the right margin.
-
address@hidden
address@hidden last_mark_x
address@hidden last_mark_y
-???Not used.
address@hidden ignore
address@hidden right_margin_width
+The widths of the left and right margins in this window.  A value of
address@hidden means to use the buffer's value of @code{left-margin-width}
+or @code{right-margin-width}.
 
 @item window_end_pos
 This is computed as @code{z} minus the buffer position of the last glyph
@@ -1258,12 +1235,6 @@
 If redisplay in this window goes beyond this buffer position, it runs
 the @code{redisplay-end-trigger-hook}.
 
address@hidden
address@hidden orig_height
address@hidden orig_top
-??? Are temporary storage areas.
address@hidden ignore
-
 @item cursor
 A structure describing where the cursor is in this window.
 
@@ -1359,7 +1330,6 @@
 An integer, the operating system's process @acronym{ID}.
 
 @item childp
-
 A flag, address@hidden if this is really a child process.
 It is @code{nil} for a network or serial connection.
 
@@ -1369,8 +1339,8 @@
 of the buffer.
 
 @item kill_without_query
-If this is address@hidden, killing Emacs while this process is still
-running does not ask for confirmation about killing the process.
+If this is non-zero, killing Emacs while this process is still running
+does not ask for confirmation about killing the process.
 
 @item raw_status_low
 @itemx raw_status_high

Index: locals.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/locals.texi,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- locals.texi 8 Jan 2009 05:29:00 -0000       1.4
+++ locals.texi 4 May 2009 23:25:38 -0000       1.5
@@ -88,12 +88,12 @@
 @item ctl-arrow
 @xref{Usual Display}.
 
address@hidden cursor-type
address@hidden Parameters}.
-
 @item cursor-in-non-selected-windows
 @xref{Basic Windows}.
 
address@hidden cursor-type
address@hidden Parameters}.
+
 @item comment-column
 @xref{Comments,,, emacs, The GNU Emacs Manual}.
 
@@ -199,15 +199,11 @@
 @xref{Scroll Bars}.
 
 @item scroll-down-aggressively
address@hidden Scrolling}.
-
address@hidden scroll-up-aggressively
address@hidden scroll-up-aggressively
 @xref{Textual Scrolling}.
 
 @item selective-display
address@hidden Display}.
-
address@hidden selective-display-ellipses
address@hidden selective-display-ellipses
 @xref{Selective Display}.
 
 @item tab-width




reply via email to

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