diff runtime/doc/eval.txt @ 5786:71b165a378ad v7.4.237

updated for version 7.4.237 Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
author Bram Moolenaar <bram@vim.org>
date Wed, 02 Apr 2014 12:12:08 +0200
parents 5ab2946f7ce5
children a63d0cd691dc
line wrap: on
line diff
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1682,7 +1682,7 @@ v:version	Version number of Vim: Major v
 		is 501.  Read-only.  "version" also works, for backwards
 		compatibility.
 		Use |has()| to check if a certain patch was included, e.g.: >
-			if has("patch123")
+			if has("patch-7.4.123")
 <		Note that patch numbers are specific to the version, thus both
 		version 5.0 and 5.1 may have a patch 123, but these are
 		completely different.