Hi Bram and list,

Fixed contents:

doc/eval.txt
- L2326, L6788-L6791: s/lnum_end/lnum-end/
- L6741: fix missing `"' after `bufnr`.
- L7884-L7889: The starting columns position of the item was adjusted to that 
of other text prop APIs.
- L7972: Remove extra `'` after `10`.
- L7976: Same as above.

doc/options.txt
- L4140: Remove extra space at the beginning of the line

doc/quickfix.txt
- L1554: Added `:` at the beginning of the help index of the command name. 
Because Cfilter and Lfilter are Ex commands.

doc/syntax.txt
- L32: Remove extra space after the section numner.

doc/textprop.txt
- L106, L110: s/lnum_end/lnum-end/


Please check and include an attached patch.

--
Best regards,
Hirohito Higashi (h_east)

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 85b9e4419..d00af4b2c 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -2323,7 +2323,7 @@ prop_clear({lnum} [, {lnum-end} [, {props}]])
 prop_find({props} [, {direction}])
 				Dict	search for a text property
 prop_list({lnum} [, {props})  	List	text properties in {lnum}
-prop_remove({props} [, {lnum} [, {lnum_end}]])
+prop_remove({props} [, {lnum} [, {lnum-end}]])
 				Number	remove a text property
 prop_type_add({name}, {props})	none	define a new property type
 prop_type_change({name}, {props})
@@ -6738,7 +6738,7 @@ prop_find({props} [, {direction}])
 		Search for a text property as specified with {props}:
 			"id"		property with this ID
 			"type"		property with this type name
-			"bufnr	        buffer to search in; when present a
+			"bufnr"	        buffer to search in; when present a
 					start position with "lnum" and "col"
 					must be given; when omitted the
 					current buffer is used
@@ -6785,10 +6785,10 @@ prop_list({lnum} [, {props}]) 				*prop_list()*
 
 
 						*prop_remove()* *E968*
-prop_remove({props} [, {lnum} [, {lnum_end}]])
+prop_remove({props} [, {lnum} [, {lnum-end}]])
 		Remove a matching text property from line {lnum}.  When
-		{lnum_end} is given, remove matching text properties from line
-		{lnum} to {lnum_end} (inclusive).
+		{lnum-end} is given, remove matching text properties from line
+		{lnum} to {lnum-end} (inclusive).
 		When {lnum} is omitted remove matching text properties from
 		all lines.
 
@@ -7881,12 +7881,12 @@ sign_define({name} [, {dict}])				*sign_define()*
 		The {name} can be a String or a Number.  The optional {dict}
 		argument specifies the sign attributes.  The following values
 		are supported:
-		    icon	full path to the bitmap file for the sign.
-		    linehl	highlight group used for the whole line the
+			icon	full path to the bitmap file for the sign.
+			linehl	highlight group used for the whole line the
 				sign is placed in.
-		    text	text that is displayed when there is no icon
+			text	text that is displayed when there is no icon
 				or the GUI is not being used.
-		    texthl	highlight group used for the text item
+			texthl	highlight group used for the text item
 		For an existing sign, the attributes are updated.
 
 		Returns 0 on success and -1 on failure.
@@ -7969,11 +7969,11 @@ sign_getplaced([{expr} [, {dict}]])			*sign_getplaced()*
 			echo sign_getplaced("eval.c", {'lnum' : 10})
 
 			" Get sign with identifier 10 placed in a.py
-			echo sign_getplaced("a.py", {'id' : 10'})
+			echo sign_getplaced("a.py", {'id' : 10})
 
 			" Get sign with id 20 in group 'g1' placed in a.py
 			echo sign_getplaced("a.py", {'group' : 'g1',
-							\  'id' : 20'})
+							\  'id' : 20})
 
 			" Get a List of all the placed signs
 			echo sign_getplaced()
@@ -7989,7 +7989,7 @@ sign_place({id}, {group}, {name}, {expr} [, {dict}])
 		the sign group name. To use the global sign group, use an
 		empty string.  {group} functions as a namespace for {id}, thus
 		two groups can use the same IDs.
-		
+
 		{name} refers to a defined sign.
 		{expr} refers to a buffer name or number. For the accepted
 		values, see |bufname()|.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 3af7150c6..a8b7f47af 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -4137,7 +4137,7 @@ A jump table for the options with a short description can be found at |Q_op|.
 				     W:WildMenu,f:Folded,F:FoldColumn,
 				     A:DiffAdd,C:DiffChange,D:DiffDelete,
 				     T:DiffText,>:SignColumn,-:Conceal,
- 				     B:SpellBad,P:SpellCap,R:SpellRare,
+				     B:SpellBad,P:SpellCap,R:SpellRare,
 				     L:SpellLocal,+:Pmenu,=:PmenuSel,
 				     x:PmenuSbar,X:PmenuThumb,*:TabLine,
 				     #:TabLineSel,_:TabLineFill,!:CursorColumn,
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 3d9b1f266..21f7a8ec2 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1551,7 +1551,7 @@ The backslashes before the pipe character are required to avoid it to be
 recognized as a command separator.  The backslash before each space is
 required for the set command.
 
-					    *cfilter-plugin* *Cfilter* *Lfilter*
+					*cfilter-plugin* *:Cfilter* *:Lfilter*
 If you have too many matching messages, you can use the cfilter plugin to
 reduce the number of entries.  Load the plugin with: >
    packadd cfilter
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 29fae2c3f..e8634a799 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -29,7 +29,7 @@ In the User Manual:
 7.  :syntax arguments		|:syn-arguments|
 8.  Syntax patterns		|:syn-pattern|
 9.  Syntax clusters		|:syn-cluster|
-10.  Including syntax files	|:syn-include|
+10. Including syntax files	|:syn-include|
 11. Synchronizing		|:syn-sync|
 12. Listing syntax items	|:syntax|
 13. Highlight command		|:highlight|
diff --git a/runtime/doc/textprop.txt b/runtime/doc/textprop.txt
index 72e70c4a1..e58185d54 100644
--- a/runtime/doc/textprop.txt
+++ b/runtime/doc/textprop.txt
@@ -103,11 +103,11 @@ prop_type_list([{props}])		get list of property types
 Manipulating text properties:
 
 prop_add({lnum}, {col}, {props})  	add a text property
-prop_clear({lnum} [, {lnum_end} [, {bufnr}]])
+prop_clear({lnum} [, {lnum-end} [, {bufnr}]])
 					remove all text properties
 prop_find({props} [, {direction}])	search for a text property
 prop_list({lnum} [, {props})  		text properties in {lnum}
-prop_remove({props} [, {lnum} [, {lnum_end}]])
+prop_remove({props} [, {lnum} [, {lnum-end}]])
 					remove a text property
 
 

Raspunde prin e-mail lui