mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 11:50:10 +02:00
Added --home and --config command line parameters to irssi to specify
locations for ~/.irssi and ~/.irssi/config git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1626 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
bcbb55dd1e
commit
79d1d7089a
19 changed files with 129 additions and 276 deletions
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "printtext.h"
|
||||
#include "gui-windows.h"
|
||||
#include "textbuffer-reformat.h"
|
||||
|
||||
/* SYNTAX: CLEAR */
|
||||
static void cmd_clear(const char *data)
|
||||
|
|
@ -205,21 +206,21 @@ static void cmd_scrollback_end(const char *data)
|
|||
/* SYNTAX: SCROLLBACK REDRAW */
|
||||
static void cmd_scrollback_redraw(void)
|
||||
{
|
||||
#if 0
|
||||
GUI_WINDOW_REC *gui;
|
||||
GList *tmp, *next;
|
||||
LINE_REC *line, *next;
|
||||
|
||||
gui = WINDOW_GUI(active_win);
|
||||
|
||||
screen_refresh_freeze();
|
||||
for (tmp = gui->lines; tmp != NULL; tmp = next) {
|
||||
next = tmp->next;
|
||||
gui_window_reformat_line(active_win, tmp->data);
|
||||
line = textbuffer_view_get_lines(gui->view);
|
||||
while (line != NULL) {
|
||||
next = line->next;
|
||||
textbuffer_reformat_line(active_win, line);
|
||||
line = next;
|
||||
}
|
||||
|
||||
gui_window_redraw(active_win);
|
||||
screen_refresh_thaw();
|
||||
#endif
|
||||
}
|
||||
|
||||
static void cmd_scrollback_status(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue