Changeset 88736cb
- Timestamp:
- Oct 3, 2002, 2:33:31 PM (22 years ago)
- 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
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r486688f r88736cb 8 8 to the previous current message after an expunge. 9 9 "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 10 13 11 14 1.2.5 -
doc/intro.txt
rbde7714 r88736cb 57 57 Sending a Zephyr 58 58 ---------------- 59 To send a zephyr to yourself press the 'z' key. This will start a60 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.59 To send a zephyr press the 'z' key. This will start a zwrite command, 60 which you can finish by typing the name of the user you wish to send 61 to, followed by enter. Begin typing your message. You will notice 62 that most emacs-style editing is available. When you are ready to 63 send the message type Control-D or a dot ('.') on a line by itself. 64 If instead you wish to cancel the message type Control-C. 65 65 66 66 If you wish to send to a class/instance pair simply supply -c and -i … … 138 138 ------------ 139 139 Owl has a command mode where you can enter more detailed commands for 140 owl to process. To enter command press the color(':') key:140 owl to process. To enter command mode press the colon (':') key: 141 141 142 142 : begin command mode -
functions.c
r486688f r88736cb 840 840 int savey, j, i, foo, y; 841 841 842 if (curmsg<0) return(topmsg); 843 842 844 /* If we're off the top of the screen then center */ 843 845 if (curmsg<topmsg) { -
owl.h
r55faab7 r88736cb 48 48 #define OWL_DIRECTION_UPWARDS 2 49 49 50 #define OWL_SCROLLMODE_NORMAL 051 #define OWL_SCROLLMODE_TOP 152 #define OWL_SCROLLMODE_NEARTOP 253 #define OWL_SCROLLMODE_CENTER 354 #define OWL_SCROLLMODE_PAGED 450 #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 55 55 #define OWL_SCROLLMODE_PAGEDCENTER 5 56 56
Note: See TracChangeset
for help on using the changeset viewer.