diff options
author | portix <none@none> | 2012-12-06 11:10:23 +0100 |
---|---|---|
committer | portix <none@none> | 2012-12-06 11:10:23 +0100 |
commit | cfe31126f94c76ee9c2f1d5c7bfb13f31b9efcc1 (patch) | |
tree | da5a2e74c2d65b7ffbac09bda9f4837189389297 /src/entry.c | |
parent | be66d769983932d782e669257f95a6a71114c6cf (diff) | |
download | dwb-cfe31126f94c76ee9c2f1d5c7bfb13f31b9efcc1.zip |
Indentation of adblock.c, renaming static variables
Diffstat (limited to 'src/entry.c')
-rw-r--r-- | src/entry.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entry.c b/src/entry.c index 1f69a871..f291e395 100644 --- a/src/entry.c +++ b/src/entry.c @@ -18,7 +18,7 @@ #include "dwb.h" #include "entry.h" -static char *m_store; +static char *s_store; /* dwb_entry_history_forward {{{*/ DwbStatus entry_history_forward(GList **last) { @@ -26,7 +26,7 @@ entry_history_forward(GList **last) { GList *prev = NULL; if (*last != NULL) { if ((*last)->prev == NULL) { - text = m_store; + text = s_store; } else { prev = (*last)->prev; @@ -50,8 +50,8 @@ entry_history_back(GList **list, GList **last) { GList *next; if (*last == NULL) { next = *list; - g_free(m_store); - m_store = g_strdup(GET_TEXT()); + g_free(s_store); + s_store = g_strdup(GET_TEXT()); } else if ((*last)->next != NULL) next = (*last)->next; |