The 'set' command now allows the value to contain spaces
git-svn-id: file:///home/svn/incoming/trunk@3572 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
a6726c8df7
commit
e7a6f2b4b3
|
@ -662,7 +662,7 @@ class Core
|
|||
|
||||
# Set the supplied name to the supplied value
|
||||
name = args[0]
|
||||
value = args[1]
|
||||
value = args[1, args.length-1].join(' ')
|
||||
|
||||
# If the driver indicates that the value is not valid, bust out.
|
||||
if (driver.on_variable_set(global, name, value) == false)
|
||||
|
|
Loading…
Reference in New Issue