aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.c b/main.c
index 556e198..6aafa19 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.26 2001/11/29 09:34:15 ukai Exp $ */
+/* $Id: main.c,v 1.27 2001/11/30 04:56:00 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -3763,13 +3763,15 @@ _peekURL(int only_img)
}
a = (only_img ? NULL : retrieveCurrentAnchor(Currentbuf));
if (a == NULL) {
- a = retrieveCurrentImg(Currentbuf);
+ a = (only_img ? NULL :retrieveCurrentForm(Currentbuf));
if (a == NULL) {
- a = retrieveCurrentForm(Currentbuf);
+ a = retrieveCurrentImg(Currentbuf);
if (a == NULL) {
s = NULL;
return;
}
+ }
+ else {
s = Strnew_charp(form2str((FormItemList *)a->url));
goto disp;
}