* Caved in to pressure and enabled <R>eply in public rooms.
authorArt Cancro <ajc@citadel.org>
Fri, 31 Mar 2000 02:10:52 +0000 (02:10 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 31 Mar 2000 02:10:52 +0000 (02:10 +0000)
citadel/ChangeLog
citadel/messages.c

index 950542cedb10d8f4f9dda4f2d8f60dcadcdfc55c..1bad0ff543b26175a9d2363f524ffcf910af821a 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 570.9  2000/03/31 02:10:52  ajc
+ * Caved in to pressure and enabled <R>eply in public rooms.
+
  Revision 570.8  2000/03/28 03:55:53  ajc
  * Modified <.RU> to allow search for partial match
 
@@ -1798,4 +1801,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Initial CVS import 
-
index 7e22f00329ae5cfedfeaa5113c52cab644fed653..648f1199430e386c252a4cbe347d7cb75842ee2d 100644 (file)
@@ -1066,8 +1066,7 @@ RMSGREAD: fflush(stdout);
                        color(DIM_WHITE);
                        printf(") ");
 
-                       if (is_mail==1) keyopt("<R>eply ");
-                       keyopt("<B>ack <A>gain <Q>uote <N>ext <S>top ");
+                       keyopt("<B>ack <A>gain <Q>uote <R>eply <N>ext <S>top ");
                        if (rc_url_cmd[0] && num_urls) keyopt("<U>RL View ");
                        keyopt("<?>Help/others -> ");
                        
@@ -1081,7 +1080,6 @@ RMSGREAD: fflush(stdout);
                                        if ((e=='d')||(e=='m')||(e=='c')) e=0;
                                        }
 /* print only if available */  if ((e=='p')&&(strlen(printcmd)==0)) e=0;
-/* can't reply in public rms */        if ((e=='r')&&(is_mail!=1)) e=0;
 /* can't file if not allowed */        if ((e=='f')&&(rc_allow_attachments==0)) e=0;
 /* link only if browser avail*/        if ((e=='u')&&(strlen(rc_url_cmd)==0)) e=0;
                                } while((e!='a')&&(e!='n')&&(e!='s')