summaryrefslogtreecommitdiff
path: root/src/common/history.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-07-30 18:41:48 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-07-30 18:41:48 +0000
commit9e328d3fef0d87135d7c4aa5d22f35a5703208cd (patch)
tree0f86190a7424fd0118c58ab66b4b90c39d7a069b /src/common/history.h
parent312d8015f5d52ee28bcbdf6d543a7e1c3a0b4063 (diff)
downloadweechat-9e328d3fef0d87135d7c4aa5d22f35a5703208cd.zip
ctrl-up/ctrl-down keys added to call previous/next command in global history (common to all buffers)
Diffstat (limited to 'src/common/history.h')
-rw-r--r--src/common/history.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/history.h b/src/common/history.h
index 9be1b40e8..9928e0787 100644
--- a/src/common/history.h
+++ b/src/common/history.h
@@ -30,8 +30,12 @@ struct t_history
t_history *prev_history; /* link to previous text/command */
};
+extern t_history *history_global;
+extern t_history *history_global_last;
+extern t_history *history_global_ptr;
+
extern void history_add (void *, char *);
-extern void history_general_free ();
+extern void history_global_free ();
extern void history_buffer_free (void *);
#endif /* history.h */