]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_textprop) <text-property-default-nonsticky>:
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 1 Jun 2008 04:24:43 +0000 (04:24 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 1 Jun 2008 04:24:43 +0000 (04:24 +0000)
(Fremove_text_properties): Fix typos in docstrings.

src/ChangeLog
src/textprop.c

index 34a825d07203f609d44e0c315ef16bb347cefd11..c8cbaf174dde852a8a710e95f75578223f7aa1e8 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-01  Juanma Barranquero  <lekktu@gmail.com>
+
+       * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
+       (Fremove_text_properties): Fix typos in docstrings.
+
 2008-05-31  Kenichi Handa  <handa@m17n.org>
 
        * font.c (font_list_entities): Fix the car part of data to be
index 75e804467d90f146559759544e550a1605e09dcc..6bc1938fadf163c46f3f57c22b8c6453e4bb90e4 100644 (file)
@@ -1504,7 +1504,7 @@ the current buffer), START and END are buffer positions (integers or
 markers).  If OBJECT is a string, START and END are 0-based indices into it.
 Return t if any property was actually removed, nil otherwise.
 
-Use set-text-properties if you want to remove all text properties.  */)
+Use `set-text-properties' if you want to remove all text properties.  */)
      (start, end, properties, object)
      Lisp_Object start, end, properties, object;
 {
@@ -2294,8 +2294,8 @@ Each element has the form (PROPERTY . NONSTICKINESS).
 
 If a character in a buffer has PROPERTY, new text inserted adjacent to
 the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil,
-inherits it if NONSTICKINESS is nil.  The front-sticky and
-rear-nonsticky properties of the character overrides NONSTICKINESS.  */);
+inherits it if NONSTICKINESS is nil.  The `front-sticky' and
+`rear-nonsticky' properties of the character override NONSTICKINESS.  */);
   /* Text property `syntax-table' should be nonsticky by default.  */
   Vtext_property_default_nonsticky
     = Fcons (Fcons (intern ("syntax-table"), Qt), Qnil);