summaryrefslogtreecommitdiff
path: root/vchat-user.c
diff options
context:
space:
mode:
authorerdgeist <>2003-04-03 22:05:39 +0000
committererdgeist <>2003-04-03 22:05:39 +0000
commitacfffbe9045e9f72edd1eeee891f62a9fc45d3ad (patch)
treeaaab1e956942ea48d1f6da210c5c7d7ed4416fe7 /vchat-user.c
parenta6f899fc5ee4aefe3e5922336a034ca902aeaef0 (diff)
Compiles again, but TAB on start doesn't work perfect
Diffstat (limited to 'vchat-user.c')
-rwxr-xr-xvchat-user.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/vchat-user.c b/vchat-user.c
index 5f073a6..242480e 100755
--- a/vchat-user.c
+++ b/vchat-user.c
@@ -91,7 +91,9 @@ ul_add (unsigned char *name, int ignored)
91 } 91 }
92 } 92 }
93 } 93 }
94#ifndef OLDREADLINE
94 rl_last_func = NULL; 95 rl_last_func = NULL;
96#endif
95} 97}
96 98
97/* delete user from userlist */ 99/* delete user from userlist */
@@ -132,7 +134,9 @@ ul_del (unsigned char *name, int ignored)
132 ltmp = tmp; 134 ltmp = tmp;
133 tmp = tmp->next; 135 tmp = tmp->next;
134 } 136 }
137#ifndef OLDREADLINE
135 rl_last_func = NULL; 138 rl_last_func = NULL;
139#endif
136} 140}
137 141
138/* let user join a channel */ 142/* let user join a channel */
@@ -145,7 +149,9 @@ ul_join (unsigned char *name, int channel)
145 ownjoin (channel); 149 ownjoin (channel);
146 return; 150 return;
147 } else ul_moveuser(name,channel); 151 } else ul_moveuser(name,channel);
152#ifndef OLDREADLINE
148 rl_last_func = NULL; 153 rl_last_func = NULL;
154#endif
149} 155}
150 156
151user * 157user *
@@ -196,7 +202,9 @@ ul_usertofront( user *who ) {
196 who->next = nicks; 202 who->next = nicks;
197 nicks = who; 203 nicks = who;
198 } 204 }
205#ifndef OLDREADLINE
199 rl_last_func = NULL; 206 rl_last_func = NULL;
207#endif
200} 208}
201 209
202void 210void
@@ -229,7 +237,9 @@ ul_moveuser (unsigned char *name, int channel) {
229 tmp->chan = channel; 237 tmp->chan = channel;
230 tmp->chan_valid = 1; 238 tmp->chan_valid = 1;
231 } 239 }
240#ifndef OLDREADLINE
232 rl_last_func = NULL; 241 rl_last_func = NULL;
242#endif
233} 243}
234 244
235/* let user leave a channel */ 245/* let user leave a channel */
@@ -250,7 +260,9 @@ ul_leave (unsigned char *name, int channel)
250 tmp->chan_valid = 0; 260 tmp->chan_valid = 0;
251 return; 261 return;
252 } 262 }
263#ifndef OLDREADLINE
253 rl_last_func = NULL; 264 rl_last_func = NULL;
265#endif
254} 266}
255 267
256/* let user change nick */ 268/* let user change nick */
@@ -271,7 +283,9 @@ ul_nickchange (unsigned char *oldnick, unsigned char *newnick)
271 tmp->nick = strdup (newnick); 283 tmp->nick = strdup (newnick);
272 return; 284 return;
273 } 285 }
286#ifndef OLDREADLINE
274 rl_last_func = NULL; 287 rl_last_func = NULL;
288#endif
275} 289}
276 290
277/* clear userlist */ 291/* clear userlist */
@@ -291,7 +305,9 @@ ul_clear (void)
291 } 305 }
292 /* mark list empty */ 306 /* mark list empty */
293 nicks = NULL; 307 nicks = NULL;
308#ifndef OLDREADLINE
294 rl_last_func = NULL; 309 rl_last_func = NULL;
310#endif
295} 311}
296 312
297int ulnc_casenick(user *tmp, const unsigned char *text, int len, int value) { 313int ulnc_casenick(user *tmp, const unsigned char *text, int len, int value) {