]> git.eshelyaron.com Git - emacs.git/commitdiff
* xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 14 Apr 2009 02:28:25 +0000 (02:28 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 14 Apr 2009 02:28:25 +0000 (02:28 +0000)
src/ChangeLog
src/xdisp.c

index ebbe9bab941bebd336d1b2d5bd8197d544e8200c..7c07489dfc1b6b562793b6608946bc0155f9c960 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-14  Chong Yidong  <cyd@stupidchicken.com>
+
+       * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
+
 2009-04-14  Kenichi Handa  <handa@m17n.org>
 
        * xfont.c (xfont_has_char): The font has C if C is ASCII and the
index 7a01d60d5a70ca73a62162a8ba0b23ece2f06557..39232cf2bec5f481f84b92de7752d06938c97c45 100644 (file)
@@ -25275,26 +25275,27 @@ The enable predicate for a menu binding should check this variable.  */);
   inhibit_menubar_update = 0;
 
   DEFVAR_LISP ("wrap-prefix", &Vwrap_prefix,
-    doc: /* Prefix added to the beginning of all continuation lines at display-time.
-May be a string, an image, or a stretch-glyph such as used by the
-`display' text-property.
+    doc: /* Prefix prepended to all continuation lines at display time.
+The value may be a string, an image, or a stretch-glyph; it is
+interpreted in the same way as the value of a `display' text property.
 
-This variable is overridden by any `wrap-prefix' text-property.
+This variable is overridden by any `wrap-prefix' text or overlay
+property.
 
-To add a prefix to non-continuation lines, use the `line-prefix' variable.  */);
+To add a prefix to non-continuation lines, use `line-prefix'.  */);
   Vwrap_prefix = Qnil;
   staticpro (&Qwrap_prefix);
   Qwrap_prefix = intern ("wrap-prefix");
   Fmake_variable_buffer_local (Qwrap_prefix);
 
   DEFVAR_LISP ("line-prefix", &Vline_prefix,
-    doc: /* Prefix added to the beginning of all non-continuation lines at display-time.
-May be a string, an image, or a stretch-glyph such as used by the
-`display' text-property.
+    doc: /* Prefix prepended to all non-continuation lines at display time.
+The value may be a string, an image, or a stretch-glyph; it is
+interpreted in the same way as the value of a `display' text property.
 
-This variable is overridden by any `line-prefix' text-property.
+This variable is overridden by any `line-prefix' text property.
 
-To add a prefix to continuation lines, use the `wrap-prefix' variable.  */);
+To add a prefix to continuation lines, use `wrap-prefix'.  */);
   Vline_prefix = Qnil;
   staticpro (&Qline_prefix);
   Qline_prefix = intern ("line-prefix");