about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2011-10-04 16:29:53 -0500
committerMarco Peereboom <marco@conformal.com>2011-10-04 16:29:53 -0500
commit038e53d8c1a5b14d427e1e5beb302722d97d73c1 (patch)
treefcc13d3b4137ba846372571fdb4ab81d7a2ca2d6
parentec7f881c2e12f702593b326f19f222075427e883 (diff)
downloadxombrero-038e53d8c1a5b14d427e1e5beb302722d97d73c1.tar.gz
fix some 80 cols violations
-rw-r--r--xxxterm.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 1b0bc04..9902c60 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -638,16 +638,21 @@ char		*get_tab_style(struct settings *);
 char		*get_work_dir(struct settings *);
 void		startpage_add(const char *, ...);
 
-void		walk_alias(struct settings *, void (*)(struct settings *, char *, void *), void *);
-void		walk_cookie_wl(struct settings *, void (*)(struct settings *, char *, void *), void *);
-void		walk_js_wl(struct settings *, void (*)(struct settings *, char *, void *), void *);
-void		walk_kb(struct settings *, void (*)(struct settings *, char *, void *), void *);
-void		walk_mime_type(struct settings *, void (*)(struct settings *, char *, void *), void *);
+void		walk_alias(struct settings *, void (*)(struct settings *,
+		    char *, void *), void *);
+void		walk_cookie_wl(struct settings *, void (*)(struct settings *,
+		    char *, void *), void *);
+void		walk_js_wl(struct settings *, void (*)(struct settings *,
+		    char *, void *), void *);
+void		walk_kb(struct settings *, void (*)(struct settings *, char *,
+		    void *), void *);
+void		walk_mime_type(struct settings *, void (*)(struct settings *,
+		    char *, void *), void *);
 
 void		recalc_tabs(void);
 void		recolor_compact_tabs(void);
 void		set_current_tab(int page_num);
-gboolean	update_statusbar_position(GtkAdjustment* adjustment, gpointer data);
+gboolean	update_statusbar_position(GtkAdjustment*, gpointer);
 void		marks_clear(struct tab *t);
 
 int		set_http_proxy(char *);
@@ -655,7 +660,9 @@ int		set_http_proxy(char *);
 struct special {
 	int		(*set)(struct settings *, char *);
 	char		*(*get)(struct settings *);
-	void		(*walk)(struct settings *, void (*cb)(struct settings *, char *, void *), void *);
+	void		(*walk)(struct settings *,
+			    void (*cb)(struct settings *, char *, void *),
+			    void *);
 };
 
 struct special		s_browser_mode = {