diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-31 08:03:10 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-31 08:03:10 +0000 |
| commit | 07b38ba2c3fb7d63bc09a6221c675e1c1a3afc4d (patch) | |
| tree | 37d6e0d3ed9a329e2a2973bc60cebfd636d82329 /plugins | |
| parent | 9c1438f17b84ef096faec0b8d52dd7d39c2c50c5 (diff) | |
dont save/load history. its slow and its stupid.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/placement/history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/placement/history.c b/plugins/placement/history.c index a7460b3d..c24f91e8 100644 --- a/plugins/placement/history.c +++ b/plugins/placement/history.c @@ -250,7 +250,7 @@ void history_startup() history_path = g_strdup_printf("%s.%d", path, ob_screen); g_free(path); - load_history(); /* load from the historydb file */ + /*load_history(); /* load from the historydb file */ dispatch_register(Event_Client_Destroy, (EventHandler)event, NULL); } @@ -259,7 +259,7 @@ void history_shutdown() { GSList *it; - save_history(); /* save to the historydb file */ + /*save_history(); /* save to the historydb file */ for (it = history_list; it != NULL; it = it->next) { struct HistoryItem *hi = it->data; g_free(hi->name); |
