Changeset 52f3507


Ignore:
Timestamp:
Nov 6, 2003, 2:56:04 PM (20 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
a0a5179
Parents:
0f45d3e
Message:
Changed startup message to reflect new mailing list.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • history.c

    r5a9f6fe r52f3507  
    4848void owl_history_store(owl_history *h, char *line)
    4949{
    50   int i, size;
     50  int size;
    5151
    5252  if (!h) return;
  • owl.c

    r7d22e76 r52f3507  
    281281
    282282  /* welcome message */
    283   strcpy(startupmsg, "-------------------------------------------------------------------------\n");
     283  strcpy(startupmsg, "-----------------------------------------------------------------------\n");
    284284  sprintf(buff,      "Welcome to Owl version %s.  Press 'h' for on-line help. \n", OWL_VERSION_STRING);
    285285  strcat(startupmsg, buff);
    286   strcat(startupmsg, "                                                                         \n");
    287   strcat(startupmsg, "If you would like to receive release announcements about owl you can join \n");
    288   strcat(startupmsg, "the owl-users@mit.edu mailing list.  MIT users can add themselves,       \n");
    289   strcat(startupmsg, "otherwise send a request to owner-owl-users@mit.edu.               ^ ^   \n");
    290   strcat(startupmsg, "                                                                   OvO   \n");
    291   strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu          (   )  \n");
    292   strcat(startupmsg, "-------------------------------------------------------------------m-m---\n");
     286  strcat(startupmsg, "                                                                       \n");
     287  strcat(startupmsg, "If you would like to receive release announcements about Owl you can  \n");
     288  strcat(startupmsg, "join the owl-users@mit.edu mailing at http://web.mit.edu/ktools/       \n");
     289  strcat(startupmsg, "                                                                 ^ ^   \n");
     290  strcat(startupmsg, "                                                                 OvO   \n");
     291  strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu        (   )  \n");
     292  strcat(startupmsg, "-----------------------------------------------------------------m-m---\n");
    293293  owl_function_adminmsg("", startupmsg);
    294294  sepbar(NULL);
  • owl.h

    r0f45d3e r52f3507  
    1919static const char owl_h_fileIdent[] = "$Id$";
    2020
    21 #define OWL_VERSION         2.0.12
    22 #define OWL_VERSION_STRING "2.0.12"
     21#define OWL_VERSION         2.0.13-pre-1
     22#define OWL_VERSION_STRING "2.0.13-pre-1"
    2323
    2424/* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset for help on using the changeset viewer.