Changeset 88736cb


Ignore:
Timestamp:
Oct 3, 2002, 2:33:31 PM (22 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:
2adaf1d
Parents:
486688f
Message:
Fixed a bug in owl_function_calculate_topmsg_normal that caused a
  segfault
Fixed some typos in the intro doc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r486688f r88736cb  
    88             to the previous current message after an expunge.
    99        "set <variable>" and "unset <variable>" now work for boolean variables.
     10        Fixed a bug in owl_function_calculate_topmsg_normal that caused a
     11          segfault
     12        Fixed some typos in the intro doc
    1013       
    11141.2.5
  • doc/intro.txt

    rbde7714 r88736cb  
    5757Sending a Zephyr
    5858----------------
    59 To send a zephyr to yourself press the 'z' key.  This will start a
    60 zwrite command, which you can finish by typing the name of the user
    61 you wish to send to, followed by enter.  Begin typing your message.
    62 You will notice that most emacs-style editing is available.  When you
    63 are ready to send the message type Control-D or a dot ('.') on a line
    64 by itself.  If instead you wish to cancel the message type Control-C.
     59To send a zephyr press the 'z' key.  This will start a zwrite command,
     60which you can finish by typing the name of the user you wish to send
     61to, followed by enter.  Begin typing your message.  You will notice
     62that most emacs-style editing is available.  When you are ready to
     63send the message type Control-D or a dot ('.') on a line by itself.
     64If instead you wish to cancel the message type Control-C.
    6565
    6666If you wish to send to a class/instance pair simply supply -c and -i
     
    138138------------
    139139Owl has a command mode where you can enter more detailed commands for
    140 owl to process.  To enter command press the color (':') key:
     140owl to process.  To enter command mode press the colon (':') key:
    141141
    142142        :               begin command mode
  • functions.c

    r486688f r88736cb  
    840840  int savey, j, i, foo, y;
    841841
     842  if (curmsg<0) return(topmsg);
     843   
    842844  /* If we're off the top of the screen then center */
    843845  if (curmsg<topmsg) {
  • owl.h

    r55faab7 r88736cb  
    4848#define OWL_DIRECTION_UPWARDS   2
    4949
    50 #define OWL_SCROLLMODE_NORMAL   0
    51 #define OWL_SCROLLMODE_TOP      1
    52 #define OWL_SCROLLMODE_NEARTOP  2
    53 #define OWL_SCROLLMODE_CENTER   3
    54 #define OWL_SCROLLMODE_PAGED    4
     50#define OWL_SCROLLMODE_NORMAL      0
     51#define OWL_SCROLLMODE_TOP         1
     52#define OWL_SCROLLMODE_NEARTOP     2
     53#define OWL_SCROLLMODE_CENTER      3
     54#define OWL_SCROLLMODE_PAGED       4
    5555#define OWL_SCROLLMODE_PAGEDCENTER 5
    5656
Note: See TracChangeset for help on using the changeset viewer.