diff options
author | jcid <devnull@localhost> | 2007-10-24 22:24:01 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-24 22:24:01 +0200 |
commit | 9c82e3b54e82bd6cd9a3541c289eaf9c5393ed63 (patch) | |
tree | f000ec305afb5a5a90f00be36e8eee94b889f7a6 /src/msg.h | |
parent | 6490b8207de848c39894ca635497a7cd941d68d4 (diff) |
Implemented a new scheme of scroll-position remembering. This is one per
visited page intead of one per url (this is more standard).
Diffstat (limited to 'src/msg.h')
-rw-r--r-- | src/msg.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,8 +15,10 @@ #define MSG(...) \ D_STMT_START { \ - if (prefs.show_msg) \ + if (prefs.show_msg){ \ printf(__VA_ARGS__); \ + fflush (stdout); \ + } \ } D_STMT_END #define MSG_WARN(...) \ |