]> code.citadel.org Git - citadel.git/commitdiff
* Added a few wonderful linebreaks to >80 column lines
authorArt Cancro <ajc@citadel.org>
Wed, 10 Nov 2004 03:03:15 +0000 (03:03 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 10 Nov 2004 03:03:15 +0000 (03:03 +0000)
citadel/ChangeLog
citadel/messages.c

index 528c83770adb9c8c8ab53e4876091140c66ad40f..4580deb9d7dec30baa683ec2c750e1ef0fd5f238 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 627.1  2004/11/10 03:03:14  ajc
+ * Added a few wonderful linebreaks to >80 column lines
+
  Revision 627.0  2004/11/03 20:18:58  ajc
  * THIS IS 6.27
 
@@ -6192,4 +6195,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index f29dddfbe6554acea109c2deffd99311a8122ea2..f3e6ccc3759c32308239763b43c9dee40bf6e80a 100644 (file)
@@ -818,8 +818,8 @@ int client_make_message(CtdlIPC *ipc,
                } else if (strlen(editor_paths[0]) > 0) {
                        editor_path = editor_paths[0];
                } else {
-                       err_printf
-                           ("*** No editor available, using built-in editor\n");
+                       err_printf("*** No editor available, "
+                               "using built-in editor\n");
                        mode = 0;
                }
        }
@@ -856,7 +856,8 @@ int client_make_message(CtdlIPC *ipc,
        if (mode == 0) {
                fp = fopen(filename, "r");
                if (fp != NULL) {
-                       fmout(screenwidth, fp, NULL, NULL, 0, screenheight, 0, 0);
+                       fmout(screenwidth, fp, NULL, NULL, 0,
+                               screenheight, 0, 0);
                        beg = ftell(fp);
                        fclose(fp);
                } else {
@@ -1187,7 +1188,8 @@ int entmsg(CtdlIPC *ipc,
        }
 
        /* Now compose the message... */
-       if (client_make_message(ipc, temp, message.recipient, message.anonymous, 0, c, message.subject) != 0) {
+       if (client_make_message(ipc, temp, message.recipient,
+          message.anonymous, 0, c, message.subject) != 0) {
                return (2);
        }