From: Juanma Barranquero Date: Sun, 1 Jun 2008 04:24:43 +0000 (+0000) Subject: (syms_of_textprop) : X-Git-Tag: emacs-pretest-23.0.90~5177 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=518c0b8331e95a5e7f41e7ac9da62839f8e3b3a5;p=emacs.git (syms_of_textprop) : (Fremove_text_properties): Fix typos in docstrings. --- diff --git a/src/ChangeLog b/src/ChangeLog index 34a825d0720..c8cbaf174dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-06-01 Juanma Barranquero + + * textprop.c (syms_of_textprop) : + (Fremove_text_properties): Fix typos in docstrings. + 2008-05-31 Kenichi Handa * font.c (font_list_entities): Fix the car part of data to be diff --git a/src/textprop.c b/src/textprop.c index 75e804467d9..6bc1938fadf 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -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);