]> git.eshelyaron.com Git - emacs.git/commitdiff
* buffer.c (syms_of_buffer) <scroll-up-aggressively>:
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 5 Aug 2008 15:04:03 +0000 (15:04 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 5 Aug 2008 15:04:03 +0000 (15:04 +0000)
  <scroll-down-aggressively, before-change-functions>:
  <after-change-functions>: Reflow docstrings.

src/ChangeLog
src/buffer.c

index ed88f0c45d2e2fee0b727cb9b0118cb7774c83b9..cf158e2cdfbdb51a21c0d4aea26e6a89f32c816f 100644 (file)
@@ -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>
 
        * 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>
index a2d0cfac591e67602ce449fc303a8f40f903c027..2cbd5f41b13154063443e9d995760d355d5fd74e 100644 (file)
@@ -5823,7 +5823,7 @@ in a file, save the ^M as a newline.  */);
 
 #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 @@ If you move point off the bottom, the window scrolls automatically.
 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 @@ If you move point off the top, the window scrolls automatically.
 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 @@ No information is given about the length of the text after the change.
 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 @@ and the post-change beginning and end are at the same place.)
 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,