changeset 97285:6c695773401d

* buffer.c (syms_of_buffer) <scroll-up-aggressively>: <scroll-down-aggressively, before-change-functions>: <after-change-functions>: Reflow docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 05 Aug 2008 15:04:03 +0000
parents 2f673abd5eb7
children fb10dad2c427
files src/ChangeLog src/buffer.c
diffstat 2 files changed, 21 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Tue Aug 05 08:05:17 2008 +0000
+++ b/src/ChangeLog	Tue Aug 05 15:04:03 2008 +0000
@@ -1,3 +1,9 @@
+2008-08-05  Juanma Barranquero  <lekktu@gmail.com>
+
+	* buffer.c (syms_of_buffer) <scroll-up-aggressively>:
+	<scroll-down-aggressively, before-change-functions>:
+	<after-change-functions>: Reflow docstrings.
+
 2008-08-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
 
 	Dock menu customization, based on a patch by Ken Raeburn, plus some
@@ -23,7 +29,7 @@
 
 2008-08-04  Seiji Zenitani  <zenitani@mac.com>
 
-	* nsfns.m (x-create-frame): Set the frame parameter alpha to nil
+	* nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
 
 2008-08-04  Chong Yidong  <cyd@stupidchicken.com>
 
@@ -265,8 +271,7 @@
 	* keyboard.c:
 	* frame.h:
 	* frame.c:
-	* frame.c: Remove references to MULTI_KBOARD, it is now the
-	default.
+	* frame.c: Remove references to MULTI_KBOARD, it is now the default.
 	* config.in: Regenerate.
 
 2008-07-30  Jason Rumney  <jasonr@gnu.org>
--- a/src/buffer.c	Tue Aug 05 08:05:17 2008 +0000
+++ b/src/buffer.c	Tue Aug 05 15:04:03 2008 +0000
@@ -5823,7 +5823,7 @@
 
 #ifndef old
   DEFVAR_PER_BUFFER ("selective-display-ellipses",
-		    &current_buffer->selective_display_ellipses,
+		     &current_buffer->selective_display_ellipses,
 		     Qnil,
 		     doc: /* Non-nil means display ... on previous line when a line is invisible.  */);
 #endif
@@ -5988,10 +5988,10 @@
 This variable controls how far it scrolls.  The value nil, the default,
 means scroll to center point.  A fraction means scroll to put point
 that fraction of the window's height from the bottom of the window.
-When the value is 0.0, point goes at the bottom line, which in the simple
-case that you moved off with C-f means scrolling just one line.  1.0 means
-point goes at the top, so that in that simple case, the window
-scrolls by a full window height.  Meaningful values are
+When the value is 0.0, point goes at the bottom line, which in the
+simple case that you moved off with C-f means scrolling just one line.
+1.0 means point goes at the top, so that in that simple case, the
+window scrolls by a full window height.  Meaningful values are
 between 0.0 and 1.0, inclusive.  */);
 
   DEFVAR_PER_BUFFER ("scroll-down-aggressively",
@@ -6001,10 +6001,10 @@
 This variable controls how far it scrolls.  The value nil, the default,
 means scroll to center point.  A fraction means scroll to put point
 that fraction of the window's height from the top of the window.
-When the value is 0.0, point goes at the top line, which in the simple
-case that you moved off with C-b means scrolling just one line.  1.0 means
-point goes at the bottom, so that in that simple case, the window
-scrolls by a full window height.  Meaningful values are
+When the value is 0.0, point goes at the top line, which in the
+simple case that you moved off with C-b means scrolling just one line.
+1.0 means point goes at the bottom, so that in that simple case, the
+window scrolls by a full window height.  Meaningful values are
 between 0.0 and 1.0, inclusive.  */);
 
 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
@@ -6021,8 +6021,8 @@
 Buffer changes made while executing the `before-change-functions'
 don't call any before-change or after-change functions.
 That's because these variables are temporarily set to nil.
-As a result, a hook function cannot straightforwardly alter the value of
-these variables.  See the Emacs Lisp manual for a way of
+As a result, a hook function cannot straightforwardly alter the
+value of these variables.  See the Emacs Lisp manual for a way of
 accomplishing an equivalent result by using other variables.
 
 If an unhandled error happens in running these functions,
@@ -6042,8 +6042,8 @@
 Buffer changes made while executing the `after-change-functions'
 don't call any before-change or after-change functions.
 That's because these variables are temporarily set to nil.
-As a result, a hook function cannot straightforwardly alter the value of
-these variables.  See the Emacs Lisp manual for a way of
+As a result, a hook function cannot straightforwardly alter the
+value of these variables.  See the Emacs Lisp manual for a way of
 accomplishing an equivalent result by using other variables.
 
 If an unhandled error happens in running these functions,