]> code.citadel.org Git - citadel.git/commitdiff
* When the <N>ew command is used to read new messages, the next "lazy"
authorArt Cancro <ajc@citadel.org>
Sun, 23 Feb 2003 05:34:45 +0000 (05:34 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 23 Feb 2003 05:34:45 +0000 (05:34 +0000)
  command (space bar) now always does <G>oto, regardless of the last one.

citadel/ChangeLog
citadel/commands.c

index a0e3fc5c902f8c5d5dee5b681a161fb254e7542d..478e45e4bf88a237c99e6c491d8599a251f2b95a 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 605.4  2003/02/23 05:34:45  ajc
+ * When the <N>ew command is used to read new messages, the next "lazy"
+   command (space bar) now always does <G>oto, regardless of the last one.
+
  Revision 605.3  2003/02/21 04:24:51  ajc
  * Completed the "ICAL freebusy" subcommand, which fetches free/busy times
    for any requested user (output in stripped-down VCALENDAR format)
@@ -4491,4 +4495,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 0232dec392a7a3570cc76295d588c8c16e78ef46..5a0580527f28700305c692873070f40aac99db4b 100644 (file)
@@ -1149,6 +1149,13 @@ int getcmd(CtdlIPC *ipc, char *argbuf)
                                    || (cptr->c_cmdnum == 20))
                                        next_lazy_cmd = 13;
 
+                               /* If this command is "read new"
+                                * then the next lazy-command (space bar)
+                                * should be "goto"
+                                */
+                               if (cptr->c_cmdnum == 13)
+                                       next_lazy_cmd = 5;
+
                                return (cptr->c_cmdnum);
 
                        }