summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-04-07 11:00:32 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-04-07 11:00:32 +0000
commit14fded25d5c58f755789e2685359a642e918ba85 (patch)
treef84e82c804360dd98b6f7b5d7e2a9d25d12d7394
parentd4f596ff40ca7ef70801e396def3a5b693f182cc (diff)
allow '-' to act as L as the setting deletion marker in autoexec.ini
git-svn-id: http://svn.miranda-ng.org/main/trunk@4361 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--src/modules/database/dbini.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/database/dbini.cpp b/src/modules/database/dbini.cpp
index a23726f133..89034b9ea8 100644
--- a/src/modules/database/dbini.cpp
+++ b/src/modules/database/dbini.cpp
@@ -330,6 +330,7 @@ static void ProcessIniFile(TCHAR* szIniPath, char *szSafeSections, char *szUnsaf
break;
case 'l':
case 'L':
+ case '-':
db_unset(NULL, szSection, szName);
break;
case 'e':