summaryrefslogtreecommitdiff
path: root/src/entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entry.c')
-rw-r--r--src/entry.c8
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;