summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-05 03:02:45 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-24 10:23:46 +0100
commitf2db5efa8f582dfd2e2a2e27a0c702b97d079d55 (patch)
treea00af36900451935d944280905d03a7d30109f12
parent2c5a4ad1e7b10a9c6a900932b8690a81811fd84e (diff)
downloadratpoison-f2db5efa8f582dfd2e2a2e27a0c702b97d079d55.zip
Put history_expand_line's return type on its own line.
-rw-r--r--src/history.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/history.c b/src/history.c
index 915889a..2e8b8d9 100644
--- a/src/history.c
+++ b/src/history.c
@@ -299,7 +299,8 @@ history_next (int history_id)
return list_entry(histories[history_id].current, struct history_item, node)->line;
}
-int history_expand_line (int history_id UNUSED, char *string, char **output)
+int
+history_expand_line (int history_id UNUSED, char *string, char **output)
{
#ifdef HAVE_HISTORY
struct history_item *item;