summaryrefslogtreecommitdiff
path: root/src/textprop.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-06-01 04:24:43 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-06-01 04:24:43 +0000
commit518c0b8331e95a5e7f41e7ac9da62839f8e3b3a5 (patch)
tree271736b24648a83ea6d0ce5c557bc6c2f59502e4 /src/textprop.c
parent3f715d17fef56ee78a3df7ebb00d4e8b1aec37de (diff)
downloademacs-518c0b8331e95a5e7f41e7ac9da62839f8e3b3a5.tar.gz
(syms_of_textprop) <text-property-default-nonsticky>:
(Fremove_text_properties): Fix typos in docstrings.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c6
1 files changed, 3 insertions, 3 deletions
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);