home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / SRC / EDITMSG.C < prev    next >
Text File  |  1991-01-11  |  20KB  |  664 lines

  1.  
  2. static char rcsid[] = "@(#)$Id: editmsg.c,v 4.1.1.3 90/07/12 22:43:08 syd Exp $";
  3.  
  4. /*******************************************************************************
  5.  *  The Elm Mail System  -  $Revision: 4.1.1.3 $   $State: Exp $
  6.  *
  7.  *             Copyright (c) 1986, 1987 Dave Taylor
  8.  *             Copyright (c) 1988, 1989, 1990 USENET Community Trust
  9.  *******************************************************************************
  10.  * Bug reports, patches, comments, suggestions should be sent to:
  11.  *
  12.  *    Syd Weinstein, Elm Coordinator
  13.  *    elm@DSI.COM            dsinc!elm
  14.  *
  15.  *******************************************************************************
  16.  * $Log:    editmsg.c,v $
  17.  * Revision 4.1.1.3  90/07/12  22:43:08  syd
  18.  * Make it aware of the fact that we loose the cursor position on
  19.  * some system calls, so set it far enough off an absolute move will
  20.  * be done on the next cursor address, and then place it where we want it.
  21.  * From: Syd, reported by Douglas Lamb
  22.  * 
  23.  * Revision 4.1.1.2  90/06/21  21:14:09  syd
  24.  * Force Carriage return on return from editor, as column is lost
  25.  * From: Steve Cambell
  26.  * 
  27.  * Revision 4.1.1.1  90/06/09  23:33:06  syd
  28.  * Only say cannot invoke on -1 error which is cannot do exec in system call
  29.  * From: Syd
  30.  * 
  31.  * Revision 4.1  90/04/28  22:42:47  syd
  32.  * checkin of Elm 2.3 as of Release PL0
  33.  * 
  34.  *
  35.  ******************************************************************************/
  36.  
  37. /** This contains routines to do with starting up and using an editor (or two)
  38.     from within Elm.  This stuff used to be in mailmsg2.c...
  39. **/
  40.  
  41. #include "headers.h"
  42. #include <errno.h>
  43. #ifndef BSD
  44. /* BSD has already included setjmp.h in headers.h */
  45. #include <setjmp.h>
  46. #endif /* BSD */
  47. #include <signal.h>
  48. #include <ctype.h>
  49.  
  50. #ifdef BSD
  51. #undef        tolower
  52. #endif
  53.  
  54. extern int errno;
  55.  
  56. char *error_name(), *error_description(), *strcpy(), *format_long();
  57. unsigned long sleep();
  58.  
  59. int
  60. edit_the_message(filename, already_has_text)
  61. char *filename;
  62. int  already_has_text;
  63. {
  64.     /** Invoke the users editor on the filename.  Return when done. 
  65.         If 'already has text' then we can't use the no-editor option
  66.         and must use 'alternative editor' (e.g. $EDITOR or default_editor)
  67.         instead... **/
  68.  
  69.     char buffer[SLEN];
  70.     register int stat, return_value = 0, old_raw;
  71.  
  72.     buffer[0] = '\0';
  73.  
  74.     if (strcmp(editor, "builtin") == 0 || strcmp(editor, "none") == 0) {
  75.       if (already_has_text) 
  76.         sprintf(buffer, "%s %s", alternative_editor, filename);
  77.       else
  78.         return(no_editor_edit_the_message(filename));
  79.     }
  80.  
  81.     PutLine0(LINES, 0, "Invoking editor...");  fflush(stdout);
  82.     if (strlen(buffer) == 0)
  83.       sprintf(buffer,"%s %s", editor, filename);
  84.  
  85.     ochown(filename, userid, groupid);    /* file was owned by root! */
  86.  
  87.     if (( old_raw = RawState()) == ON)
  88.       Raw(OFF);
  89.  
  90.     if (cursor_control)
  91.       transmit_functions(OFF);        /* function keys are local */
  92.  
  93.     if ((stat = system_call(buffer, SH, TRUE, FALSE)) == -1) { 
  94.       dprint(1,(debugfile, 
  95.           "System call failed with stat %d (edit_the_message)\n", 
  96.           stat));
  97.       dprint(1, (debugfile, "** %s - %s **\n", error_name(errno), 
  98.         error_description(errno)));
  99.       ClearLine(LINES-1);
  100.       error1("Can't invoke editor '%s' for composition.", editor);
  101.       sleep(2);
  102.       return_value = 1;
  103.     }
  104.  
  105.     if (old_raw == ON)
  106.        Raw(ON);
  107.  
  108.     SetXYLocation(0, 40);    /* a location not near the next request, so an absolute is used */
  109.     MoveCursor(LINES, 0);    /* dont know where we are, force last row, col 0 */
  110.  
  111.     if (cursor_control)
  112.       transmit_functions(ON);        /* function keys are local */
  113.     
  114.     return(return_value);
  115. }
  116.  
  117. static char simple_continue[] = "(Continue.)\l\r";
  118. static char post_ed_continue[] = 
  119. "(Continue entering message.  Type ^D or '.' on a line by itself to end.)\l\r";
  120.  
  121. extern char to[VERY_LONG_STRING], cc[VERY_LONG_STRING], 
  122.         expanded_to[VERY_LONG_STRING], expanded_cc[VERY_LONG_STRING], 
  123.         bcc[VERY_LONG_STRING], expanded_bcc[VERY_LONG_STRING],
  124.             subject[SLEN];
  125.  
  126. int      interrupts_while_editing;    /* keep track 'o dis stuff         */
  127. jmp_buf  edit_location;                /* for getting back from interrupt */
  128.  
  129. char *strip_commas();
  130. long  fsize();
  131.  
  132. int
  133. no_editor_edit_the_message(filename)
  134. char *filename;
  135. {
  136.     /** If the current editor is set to either "builtin" or "none", then
  137.         invoke this program instead.  As it turns out, this and the 
  138.         routine above have a pretty incestuous relationship (!)...
  139.     **/
  140.  
  141.     FILE *edit_fd;
  142.     char buffer[SLEN], editor_name[SLEN], buf[SLEN];
  143.     int      edit_interrupt(), old_raw;
  144. #ifdef VOIDSIG
  145.     void    (*oldint)(), (*oldquit)();
  146. #else
  147.     int    (*oldint)(), (*oldquit)();
  148. #endif
  149.  
  150.     if ((edit_fd = fopen(filename, "a")) == NULL) {
  151.       error2("Couldn't open %s for appending [%s].", filename, 
  152.           error_name(errno));
  153.       sleep (2);
  154.       dprint(1, (debugfile,
  155.         "Error encountered trying to open file %s;\n", filename));
  156.       dprint(1, (debugfile, "** %s - %s **\n", error_name(errno),
  157.             error_description(errno)));
  158.       return(1);
  159.     }
  160.  
  161.     /** is there already text in this file? **/
  162.  
  163.     if (fsize(edit_fd) > 0L)
  164.       strcpy(buf, "\l\rContinue entering message.");
  165.     else
  166.       strcpy(buf, "\l\rEnter message.");
  167.     strcat(buf, "  Type Elm commands on lines by themselves.\l\r");
  168.     sprintf(buf + strlen(buf),
  169.     "Commands include:  ^D or '.' to end, %cp to list, %c? for help.\l\r\l\r",
  170.         escape_char, escape_char);
  171.     CleartoEOS();
  172.     Write_to_screen(buf, 0);
  173.  
  174.     oldint  = signal(SIGINT,  edit_interrupt);
  175.     oldquit = signal(SIGQUIT, edit_interrupt);
  176.  
  177.     interrupts_while_editing = 0;
  178.  
  179.     if (setjmp(edit_location) != 0) {
  180.       if (interrupts_while_editing > 1) {
  181.  
  182.         (void) signal(SIGINT,  oldint);
  183.         (void) signal(SIGQUIT, oldquit);
  184.  
  185.         if (edit_fd != NULL)    /* insurance... */
  186.           fclose(edit_fd);
  187.         return(1);
  188.       }
  189.       goto more_input;    /* read input again, please! */
  190.     }
  191.     
  192. more_input: buffer[0] = '\0';
  193.  
  194.     while (optionally_enter(buffer, -1,-1, FALSE, FALSE) == 0) {
  195.  
  196.       interrupts_while_editing = 0;    /* reset to zero... */
  197.  
  198.       if (strcmp(buffer, ".") == 0)
  199.         break;    /* '.' is as good as a ^D to us dumb programs :-) */
  200.       if (buffer[0] == escape_char) {
  201.         switch (tolower(buffer[1])) {
  202.               case '?' : tilde_help();
  203.              goto more_input;
  204.  
  205.           case TILDE_ESCAPE: move_left(buffer, 1); 
  206.                    goto tilde_input;    /*!!*/
  207.  
  208.           case 't' : get_with_expansion("\l\rTo: ",
  209.                      to, expanded_to, buffer);
  210.              goto more_input;
  211.           case 'b' : get_with_expansion("\l\rBcc: ",
  212.                bcc, expanded_bcc, buffer);
  213.              goto more_input;
  214.           case 'c' : get_with_expansion("\l\rCc: ",
  215.                cc, expanded_cc, buffer);
  216.              goto more_input;
  217.           case 's' : get_with_expansion("\l\rSubject: ",
  218.                subject,NULL,buffer);
  219.                 goto more_input;
  220.  
  221.           case 'h' : get_with_expansion("\l\rTo: ", to, expanded_to, NULL);    
  222.                      get_with_expansion("Cc: ", cc, expanded_cc, NULL);
  223.                      get_with_expansion("Bcc: ", bcc,expanded_bcc, NULL);
  224.                      get_with_expansion("Subject: ", subject, NULL, NULL);
  225.              goto more_input;
  226.  
  227.           case 'r' : read_in_file(edit_fd, (char *) buffer + 2, 1);
  228.                goto more_input;
  229.           case 'e' : if (strlen(emacs_editor) > 0) 
  230.                        if (access(emacs_editor, ACCESS_EXISTS) == 0) {
  231.                          strcpy(buffer, editor);
  232.                  strcpy(editor, emacs_editor);
  233.                    fclose(edit_fd);
  234.                  (void) edit_the_message(filename,0);
  235.                  strcpy(editor, buffer);
  236.                  edit_fd = fopen(filename, "a");
  237.                              Write_to_screen(post_ed_continue, 0);
  238.                          goto more_input;
  239.                    }
  240.                    else
  241.                          Write_to_screen(
  242.             "\l\r(Can't find Emacs on this system! Continue.)\l\r",
  243.             0);
  244.              else
  245.                Write_to_screen(
  246.             "\l\r(Don't know where Emacs would be. Continue.)\l\r",
  247.             0);    
  248.              goto more_input;
  249.  
  250.            case 'v' : NewLine();
  251.               strcpy(buffer, editor);
  252.               strcpy(editor, default_editor);
  253.               fclose(edit_fd);
  254.               (void) edit_the_message(filename,0);
  255.               strcpy(editor, buffer);
  256.               edit_fd = fopen(filename, "a");
  257.                           Write_to_screen(post_ed_continue, 0);
  258.                       goto more_input;
  259.  
  260.            case 'o' : Write_to_screen(
  261.                  "\l\rPlease enter the name of the editor: ", 0);
  262.               editor_name[0] = '\0';
  263.               optionally_enter(editor_name,-1,-1, FALSE, FALSE);
  264.               NewLine();
  265.                       if (strlen(editor_name) > 0) {
  266.                         strcpy(buffer, editor);
  267.                 strcpy(editor, editor_name);
  268.                 fclose(edit_fd);
  269.                 (void) edit_the_message(filename,0);
  270.                 strcpy(editor, buffer);
  271.                 edit_fd = fopen(filename, "a");
  272.                             Write_to_screen(post_ed_continue, 0);
  273.                         goto more_input;
  274.                   }
  275.                 Write_to_screen(simple_continue, 0);
  276.                       goto more_input; 
  277.  
  278.         case '<' : NewLine();
  279.                if (strlen(buffer) < 3)
  280.                  Write_to_screen(
  281.          "(You need to use a specific command here. Continue.)\l\r");
  282.                else {
  283.                  sprintf(buf, " > %s%s.%d 2>&1", temp_dir, temp_edit, getpid());
  284.                  strcat(buffer, buf);
  285.                  if (( old_raw = RawState()) == ON)
  286.                    Raw(OFF);
  287.                  (void) system_call((char *) buffer+2, SH, TRUE, TRUE);
  288.                  if (old_raw == ON)
  289.                     Raw(ON);
  290.                  sprintf(buffer, "~r %s%s.%d", temp_dir, temp_edit, getpid());
  291.                            read_in_file(edit_fd, (char *) buffer + 3, 0);
  292.                  (void) unlink((char *) buffer+3);
  293.                  SetXYLocation(0, 40);    /* a location not near the next request, so an absolute is used */
  294.                  MoveCursor(LINES, 0);    /* and go to a known location, last row col 0 */
  295.                }
  296.                        goto more_input; 
  297.  
  298.         case '!' : NewLine();
  299.                if (( old_raw = RawState()) == ON)
  300.                  Raw(OFF);
  301.                if (strlen(buffer) < 3) 
  302.                  (void) system_call(sshell, USER_SHELL, TRUE, TRUE);
  303.                else
  304.                          (void) system_call((char *) buffer+2, USER_SHELL, TRUE, TRUE);
  305.                if (old_raw == ON)
  306.                   Raw(ON);
  307.                SetXYLocation(0, 40);    /* a location not near the next request, so an absolute is used */
  308.                MoveCursor(LINES, 0);    /* and go to a known location, last row col 0 */
  309.                    Write_to_screen(simple_continue, 0);
  310.                goto more_input;
  311.  
  312.          case 'm' : /* same as 'f' but with leading prefix added */
  313.  
  314.              case 'f' : /* this can be directly translated into a
  315.                    'readmsg' call with the same params! */
  316.                 NewLine();
  317.                 read_in_messages(edit_fd, (char *) buffer + 1);
  318.                 goto more_input;
  319.  
  320.              case 'p' : /* print out message so far.  Soooo simple! */
  321.                 print_message_so_far(edit_fd, filename);
  322.                 goto more_input;
  323.  
  324.          default  : sprintf(buf,
  325.              "\l\r(Don't know what %c%c is. Try %c? for help.)\l\r",
  326.                     escape_char, buffer[1], escape_char);
  327.                 Write_to_screen(buf, 0);
  328.            }
  329.          }
  330.          else {
  331. tilde_input:
  332.            fprintf(edit_fd, "%s\n", buffer);
  333.            NewLine();
  334.          }
  335.       buffer[0] = '\0';
  336.     }
  337.  
  338.  
  339.     Write_to_screen("\l\r<end-of-message>\l\r\l\r\l\r\l\r", 0);
  340.  
  341.     (void) signal(SIGINT,  oldint);
  342.     (void) signal(SIGQUIT, oldquit);
  343.  
  344.     if (edit_fd != NULL)    /* insurance... */
  345.       fclose(edit_fd);
  346.  
  347.     return(0);
  348. }
  349.  
  350. tilde_help()
  351. {
  352.     /* a simple routine to print out what is available at this level */
  353.  
  354.     char    buf[SLEN];
  355.  
  356.     Write_to_screen("\l\r(Available options at this point are:\l\r\l\r", 0);
  357.     sprintf(buf, "\t%c?\tPrint this help menu.\l\r", escape_char);
  358.     Write_to_screen(buf, 0);
  359.     if (escape_char == TILDE_ESCAPE) /* doesn't make sense otherwise... */
  360.       Write_to_screen(
  361.           "\t~~\tAdd line prefixed by a single '~' character.\l\r", 0);
  362.  
  363.     sprintf(buf,
  364.       "\t%cb\tChange the addresses in the Blind-carbon-copy list.\l\r",
  365.       escape_char);
  366.     Write_to_screen(buf, 0);
  367.  
  368.     sprintf(buf,
  369.         "\t%cc\tChange the addresses in the Carbon-copy list.\l\r",
  370.         escape_char);
  371.     Write_to_screen(buf, 0);
  372.     sprintf(buf,
  373.           "\t%ce\tInvoke the Emacs editor on the message, if possible.\l\r",
  374.         escape_char);
  375.     Write_to_screen(buf, 0);
  376.     sprintf(buf,
  377.         "\t%cf\tAdd the specified message or current.\l\r",
  378.         escape_char);
  379.     Write_to_screen(buf, 0);
  380.     sprintf(buf,
  381.           "\t%ch\tChange all available headers (to, cc, bcc, subject).\l\r",
  382.         escape_char);
  383.     Write_to_screen(buf, 0);
  384.     sprintf(buf,
  385.         "\t%cm\tSame as '%cf', but with the current 'prefix'.\l\r",
  386.         escape_char, escape_char);
  387.     Write_to_screen(buf, 0);
  388.     sprintf(buf,
  389.         "\t%co\tInvoke a user specified editor on the message.\l\r",
  390.         escape_char);
  391.     Write_to_screen(buf, 0);
  392.     sprintf(buf,
  393.           "\t%cp\tPrint out message as typed in so far.\l\r", escape_char);
  394.     Write_to_screen(buf, 0);
  395.     sprintf(buf,
  396.         "\t%cr\tRead in the specified file.\l\r", escape_char);
  397.     Write_to_screen(buf, 0);
  398.     sprintf(buf,
  399.         "\t%cs\tChange the subject of the message.\l\r", escape_char);
  400.     Write_to_screen(buf, 0);
  401.     sprintf(buf,
  402.         "\t%ct\tChange the addresses in the To list.\l\r",
  403.         escape_char);
  404.     Write_to_screen(buf, 0);
  405.     sprintf(buf,
  406.         "\t%cv\tInvoke the Vi visual editor on the message.\l\r",
  407.         escape_char);
  408.     Write_to_screen(buf, 0);
  409.     sprintf(buf,
  410.           "\t%c!\tExecute a unix command (or give a shell if no command).\l\r",
  411.       escape_char);
  412.     Write_to_screen(buf, 0);
  413.     sprintf(buf,
  414.       "\t%c<\tExecute a unix command adding the output to the message.\l\r",
  415.       escape_char);
  416.     Write_to_screen(buf, 0);
  417.     sprintf(buf,
  418.       "\t.  \tby itself on a line (or a control-D) ends the message.\l\r");
  419.     Write_to_screen(buf, 0);
  420.     Write_to_screen("Continue.)\l\r", 0);
  421. }
  422.  
  423. read_in_file(fd, filename, show_user_filename)
  424. FILE *fd;
  425. char *filename;
  426. int   show_user_filename;
  427. {
  428.     /** Open the specified file and stream it in to the already opened 
  429.         file descriptor given to us.  When we're done output the number
  430.         of lines and characters we added, if any... **/
  431.  
  432.     FILE *myfd;
  433.     char myfname[SLEN], buffer[SLEN];
  434.     register int n;
  435.     register int lines = 0, nchars = 0;
  436.  
  437.     for ( n = 0 ; whitespace(filename[n]) ; n++ );
  438.  
  439.     /** expand any shell variables, '~' or other notation... **/
  440.     /* temp copy of filename to buffer since expand_env is destructive */
  441.     strcpy(buffer, &filename[n]);
  442.     expand_env(myfname, buffer);
  443.  
  444.     if (strlen(myfname) == 0) {
  445.       Write_to_screen(
  446.           "\l\r(No filename specified for file read! Continue.)\l\r", 0);
  447.       return;
  448.     }
  449.  
  450.     if ((myfd = fopen(myfname,"r")) == NULL) {
  451.       Write_to_screen("\l\r(Couldn't read file '%s'! Continue.)\l\r", 1,
  452.          myfname);
  453.       return;
  454.     }
  455.  
  456.     while (fgets(buffer, SLEN, myfd) != NULL) {
  457.       n = strlen(buffer);
  458.       if(buffer[n-1] == '\n') lines++;
  459.       nchars += n;
  460.         fputs(buffer, fd);
  461.       fflush(stdout);
  462.     }
  463.  
  464.     fclose(myfd);
  465.  
  466.     if (show_user_filename)
  467.       sprintf(buffer,
  468.         "\l\r(Added %d line%s [%d char%s] from file %s. Continue.)\l\r",
  469.         lines, plural(lines), nchars, plural(nchars), myfname);
  470.     else
  471.       sprintf(buffer,
  472.         "\l\r(Added %d line%s [%d char%s] to message. Continue.)\l\r",
  473.         lines, plural(lines), nchars, plural(nchars));
  474.     Write_to_screen(buffer, 0);
  475.  
  476.     return;
  477. }
  478.  
  479. print_message_so_far(edit_fd, filename)
  480. FILE *edit_fd;
  481. char *filename;
  482. {
  483.     /** This prints out the message typed in so far.  We accomplish
  484.         this in a cheap manner - close the file, reopen it for reading,
  485.         stream it to the screen, then close the file, and reopen it
  486.         for appending.  Simple, but effective!
  487.  
  488.         A nice enhancement would be for this to -> page <- the message
  489.         if it's sufficiently long.  Too much work for now, though.
  490.     **/
  491.     
  492.     char buffer[SLEN];
  493.  
  494.     fclose(edit_fd);
  495.  
  496.     if ((edit_fd = fopen(filename, "r")) == NULL) {
  497.       Write_to_screen("\l\rMayday!  Mayday!  Mayday!\l\r", 0);
  498.       Write_to_screen("\l\rPanic: Can't open file for reading!  Bail!\l\r",
  499.           0);
  500.       emergency_exit();
  501.     }
  502.  
  503.     Write_to_screen("\l\rTo: %s\l\r", 1, format_long(to, 4));
  504.     Write_to_screen("Cc: %s\l\r", 1, format_long(cc, 4));
  505.     Write_to_screen("Bcc: %s\l\r", 1, format_long(bcc, 5));
  506.     Write_to_screen("Subject: %s\l\r\l\r", 1, subject);
  507.  
  508.     while (fgets(buffer, SLEN, edit_fd) != NULL) {
  509.       Write_to_screen(buffer, 0);
  510.       CarriageReturn();
  511.         }
  512.  
  513.     fclose(edit_fd);
  514.  
  515.     if ((edit_fd = fopen(filename, "a")) == NULL) {
  516.       Write_to_screen("Mayday!  Mayday!  Abandon Ship!  Aiiieeeeee\l\r", 0);
  517.       Write_to_screen("\l\rPanic: Can't reopen file for appending!\l\r", 0);
  518.       emergency_exit();
  519.     }
  520.  
  521.     Write_to_screen("\l\r(Continue entering message.)\l\r", 0);
  522. }
  523.  
  524. read_in_messages(fd, buffer)
  525. FILE *fd;
  526. char *buffer;
  527. {
  528.     /** Read the specified messages into the open file.  If the
  529.         first character of "buffer" is 'm' then prefix it, other-
  530.         wise just stream it in straight...Since we're using the
  531.         pipe to 'readmsg' we can also allow the user to specify
  532.         patterns and such too...
  533.     **/
  534.  
  535.     FILE *myfd, *popen();
  536.     char  local_buffer[SLEN], *arg;
  537.     register int add_prefix=0, mindex;
  538.     register int n;
  539.     int lines = 0, nchars = 0;
  540.  
  541.     add_prefix = tolower(buffer[0]) == 'm';
  542.  
  543.     /* strip whitespace to get argument */
  544.     for(arg = &buffer[1]; whitespace(*arg); arg++)
  545.         ;
  546.  
  547.     /* if no argument or begins with a digit, then retrieve the
  548.      * appropriate message from the current folder, else
  549.      * just take the arguments as a pattern for readmsg to match in 
  550.      * the current folder.
  551.      */
  552.     if(isdigit(*arg) || *arg == '\0') {
  553.       if(message_count < 1) {
  554.         Write_to_screen("(No messages to read in! Continue.)\l\r", 0);
  555.         return;
  556.       }
  557.       if((mindex = atoi(arg)) == 0)    /* no argument - read in current msg */
  558.         mindex = current;
  559.       else if(mindex < 1 || mindex > message_count) {
  560.         sprintf(local_buffer,
  561.           "(Valid messsage numbers are between 1 and %d. Continue.)\l\r",
  562.           message_count);
  563.         Write_to_screen(local_buffer, 0);
  564.         return;
  565.       }
  566.  
  567.       sprintf(local_buffer, "%s -f %s %d", readmsg, cur_folder,
  568.           headers[mindex-1]->index_number);
  569.  
  570.     } else
  571.       sprintf(local_buffer, "%s -f %s %s", readmsg, cur_folder, arg);
  572.  
  573.  
  574.     /* now get output of readmsg */
  575.     if ((myfd = popen(local_buffer, "r")) == NULL) {
  576.        Write_to_screen("(Can't find 'readmsg' command! Continue.)\l\r",
  577.            0);
  578.        return;    
  579.     }
  580.  
  581.     dprint(5, (debugfile, "** readmsg call: \"%s\" **\n", local_buffer));
  582.  
  583.     while (fgets(local_buffer, SLEN, myfd) != NULL) {
  584.       n = strlen(local_buffer);
  585.       nchars += n;
  586.       if (local_buffer[n-1] == '\n') lines++;
  587.       if (add_prefix)
  588.         fprintf(fd, "%s%s", prefixchars, local_buffer);
  589.       else 
  590.         fputs(local_buffer, fd);
  591.     }
  592.  
  593.     pclose(myfd);
  594.     
  595.     if (lines == 0)
  596.       sprintf(local_buffer,
  597.           "(Couldn't add the requested message. Continue.)\l\r");
  598.     else
  599.       sprintf(local_buffer,
  600.         "(Added %d line%s [%d char%s] to message. Continue.)\l\r",
  601.         lines, plural(lines), nchars, plural(nchars));
  602.     Write_to_screen(local_buffer, 0);
  603.  
  604.     return;
  605. }
  606.  
  607. get_with_expansion(prompt, buffer, expanded_buffer, sourcebuf)
  608. char *prompt, *buffer, *expanded_buffer, *sourcebuf;
  609. {
  610.     /** This is used to prompt for a new value of the specified field.
  611.         If expanded_buffer == NULL then we won't bother trying to expand
  612.         this puppy out!  (sourcebuf could be an initial addition)
  613.     **/
  614.  
  615.     Write_to_screen(prompt, 0);    fflush(stdout);    /* output! */
  616.  
  617.     if (sourcebuf != NULL) {
  618.       while (!whitespace(*sourcebuf) && *sourcebuf != '\0') 
  619.         sourcebuf++;
  620.       if (*sourcebuf != '\0') {
  621.         while (whitespace(*sourcebuf)) 
  622.           sourcebuf++;
  623.         if (strlen(sourcebuf) > 0) {
  624.           strcat(buffer, " ");
  625.           strcat(buffer, sourcebuf);
  626.         }
  627.       }
  628.     }
  629.  
  630.     optionally_enter(buffer, -1, -1, TRUE, FALSE);    /* already data! */
  631.  
  632.     if(expanded_buffer != NULL) {
  633.       build_address(strip_commas(buffer), expanded_buffer);
  634.       if(*expanded_buffer != '\0') {
  635.         if (*prompt == '\n')
  636.           Write_to_screen("%s%s", 2, prompt, expanded_buffer);
  637.         else
  638.           Write_to_screen("\l\r%s%s", 2, prompt, expanded_buffer);
  639.       }
  640.     }
  641.     NewLine();
  642.  
  643.     return;
  644. }
  645.  
  646. edit_interrupt()
  647. {
  648.     /** This routine is called when the user hits an interrupt key
  649.         while in the builtin editor...it increments the number of 
  650.         times an interrupt is hit and returns it.
  651.     **/
  652.  
  653.     signal(SIGINT, edit_interrupt);
  654.     signal(SIGQUIT, edit_interrupt);
  655.  
  656.     if (interrupts_while_editing++ == 0)
  657.       Write_to_screen("(Interrupt. One more to cancel this letter.)\l\r",
  658.           0);
  659.     else
  660.       Write_to_screen("(Interrupt. Letter cancelled.)\l\r", 0);
  661.  
  662.     longjmp(edit_location, 1);        /* get back */
  663. }
  664.