updated for version 7.0b02
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 1bb6ff1..ec9ddb6 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 7.0b. Last change: 2006 Mar 25
+*options.txt* For Vim version 7.0b. Last change: 2006 Mar 26
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -78,7 +78,7 @@
If the option is a list of flags, superfluous flags
are removed. When adding a flag that was already
present the option value doesn't change.
-< Also see |:set-args| above.
+ Also see |:set-args| above.
{not in Vi}
:se[t] {option}^={value} *:set^=*
@@ -269,7 +269,13 @@
shown (but that might change in the future).
{not in Vi}
-:setl[ocal] {option}< Set the local value of {option} to its global value.
+:setl[ocal] {option}< Set the local value of {option} to its global value by
+ copying the value.
+ {not in Vi}
+
+:se[t] {option}< Set the local value of {option} to its global value by
+ making it empty. Only makes sense for |global-local|
+ options.
{not in Vi}
*:setg* *:setglobal*
@@ -316,7 +322,11 @@
:setlocal autoread<
Note that for non-boolean options using "<" copies the global value to the
local value, it doesn't switch back to using the global value (that matters
-when changing the global value later).
+when the global value changes later). You can also use: >
+ :set path<
+This will make the local value of 'path' empty, so that the global value is
+used. Thus it does the same as: >
+ :setlocal path=
Note: In the future more global options can be made global-local. Using
":setlocal" on a global option might work differently then.