aboutsummaryrefslogtreecommitdiffstats
path: root/android/utils/ini.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-01-09 17:51:21 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-01-09 17:51:21 -0800
commitc2db2b6accc7888df514261a7240e7759df95a4c (patch)
tree0d7ecd37a534c15348cbad01d0d1f84183b7b4d8 /android/utils/ini.h
parentdf7881f07f53b041dc0568be8528e9dbb74994cc (diff)
downloadexternal_qemu-c2db2b6accc7888df514261a7240e7759df95a4c.zip
external_qemu-c2db2b6accc7888df514261a7240e7759df95a4c.tar.gz
external_qemu-c2db2b6accc7888df514261a7240e7759df95a4c.tar.bz2
auto import from //branches/cupcake/...@125939
Diffstat (limited to 'android/utils/ini.h')
-rw-r--r--android/utils/ini.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/utils/ini.h b/android/utils/ini.h
index 41b369b..ad6b36a 100644
--- a/android/utils/ini.h
+++ b/android/utils/ini.h
@@ -23,7 +23,7 @@
* assignment := <space>* <keyName> <space>* '=' <space>* <valueString> <space>* <LF>
* keyName := <keyNameStartChar> <keyNameChar>*
* keyNameStartChar := [A-Za-z_]
- * keyNameChar := [A-Za-z0-9_.]
+ * keyNameChar := [A-Za-z0-9_.-]
* valueString := <noLF>*
* space := ' ' | '\t'
* LF := '\r\n' | '\n' | '\r'
@@ -35,7 +35,7 @@
* - empty lines are ignored, as well as lines beginning with ';' or '#'
* - lines must be of the form: "<keyName> = <value>"
* - key names must start with a letter or an underscore
- * - other key name characters can be letters, digits, underscores or dots
+ * - other key name characters can be letters, digits, underscores, dots or dashes
*
* - leading and trailing space are allowed and ignored before/after the key name
* and before/after the value