summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handler.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/handler.c b/handler.c
index 87a928e..fec793d 100644
--- a/handler.c
+++ b/handler.c
@@ -587,17 +587,17 @@ Search(Widget w, XEvent * event, String * params, Cardinal * num_params)
case 'O':
case 'o':
if (file != NULL) {
- Widget w;
+ Widget w2;
char *label;
- w = CreateManpage(file);
- if (w) {
+ w2 = CreateManpage(file);
+ if (w2) {
man_pages_shown++;
/* Put title into new manual page. */
label = man_globals->manpage_title;
- man_globals = GetGlobals(w);
+ man_globals = GetGlobals(w2);
strcpy(man_globals->manpage_title, label);
ChangeLabel(man_globals->label, label);
}