]> jfr.im git - irc/evilnet/x3.git/blobdiff - src/helpfile.c
Lots of style changes to user replies. added numeric access back
[irc/evilnet/x3.git] / src / helpfile.c
index 08e8e8fe3eae1678044c215da70e4c0d155b6259..978a3af31168a3e0850d2feb2a37278db9b8f027 100644 (file)
@@ -345,29 +345,30 @@ table_send(struct userNode *from, const char *to, unsigned int size, irc_send_fu
         for (pos=ii=0; ii<((table.flags & TABLE_REPEAT_HEADERS)?nreps:1); ii++) {
             for (jj=0; 1; ) {
                 len = strlen(table.contents[0][jj]);
-                line[pos++] = '\02'; /* bold header */
+                //line[pos++] = '\02'; /* bold header */
                 spaces = max_width[jj] - len;
                 if (table.flags & TABLE_PAD_LEFT)
                     while (spaces--)
                         line[pos++] = ' ';
                 memcpy(line+pos, table.contents[0][jj], len);
                 pos += len;
+                //line[pos++] = '\02'; /* end bold header */
                 if (++jj == table.width)
                     break;
                 if (!(table.flags & TABLE_PAD_LEFT))
                     while (spaces--)
                         line[pos++] = ' ';
                 line[pos++] = ' ';
-                line[pos++] = '\02'; /* end bold header */
             }
         }
         line[pos] = 0;
-        irc_send(from, to, line);
         sepsize = strlen_vis(line);
         sepstr = malloc(sepsize + 1);
         memset(sepstr, '-', sepsize);
         sepstr[sepsize] = 0;
-        irc_send(from, to, sepstr);
+        irc_send(from, to, sepstr); /* ----------------- */
+        irc_send(from, to, line);   /* alpha  beta   roe */
+        irc_send(from, to, sepstr); /* ----------------- */
         ii = 1;
     }
     /* Send the table. */
@@ -733,29 +734,6 @@ _send_help(struct userNode *dest, struct userNode *src, expand_func_t expand, co
     return res;
 }
 
-
-/*
-int
-_send_help_breef(struct userNode *dest, struct userNode *src, expand_func_t expand, const char *format, ...)
-{
-    int res;
-    char*  buf;
-    char*  ptr;
-    va_list ap;
-
-    buf = (char *) malloc(strlen(format) +1);
-    strcpy(buf, format);
-    ptr = strchr(buf, '\n');
-    *ptr = '\0';
-    va_start(ap, buf);
-    res = vsend_message(dest->nick, src, dest->handle_info, 12, expand, buf, ap);
-    va_end(ap);
-    free(buf);
-    return res;
-}
-*/
-
-
 int
 send_help(struct userNode *dest, struct userNode *src, struct helpfile *hf, const char *topic)
 {
@@ -788,7 +766,7 @@ send_help(struct userNode *dest, struct userNode *src, struct helpfile *hf, cons
 }
 
 int
-send_help_breef(struct userNode *dest, struct userNode *src, struct helpfile *hf, const char *topic)
+send_help_brief(struct userNode *dest, struct userNode *src, struct helpfile *hf, const char *topic)
 {
     struct helpfile *lang_hf;
     struct record_data *rec;