move #define to the top

This commit is contained in:
Daniel Micay 2012-07-05 22:12:32 -04:00
parent 284e170321
commit 124979d812
1 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,8 @@
# define __attribute__(x)
#endif
#define CSI "\x1b["
static const char * const url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+()]*";
typedef enum overlay_mode {
@ -90,8 +92,6 @@ static void update_selection(VteTerminal *vte, select_info *select) {
vte_terminal_copy_primary(vte);
}
#define CSI "\x1b["
static void start_selection(VteTerminal *vte, select_info *select) {
vte_terminal_feed(vte, CSI "s", strlen(CSI "s")); // save cursor position
select->mode = SELECT_ON;