diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-17 14:59:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-17 14:59:32 +0000 |
commit | 2edcdd715ffd5c3ddd0009a75f8f2f451cdb9c57 (patch) | |
tree | d201bff69108b9cd914719677d3e447e29c346b0 /src/core/channel-rec.h | |
parent | 090e88b34db29b681c7579472aafa211832d38af (diff) | |
download | irssi-2edcdd715ffd5c3ddd0009a75f8f2f451cdb9c57.zip |
Remember who set the topic and when, display the info when using /TOPIC.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@845 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/channel-rec.h')
-rw-r--r-- | src/core/channel-rec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/channel-rec.h b/src/core/channel-rec.h index 9e991cb4..e0d5b858 100644 --- a/src/core/channel-rec.h +++ b/src/core/channel-rec.h @@ -3,6 +3,8 @@ #include "window-item-rec.h" char *topic; +char *topic_by; +time_t topic_time; GHashTable *nicks; /* list of nicks */ int no_modes:1; /* channel doesn't support modes */ |