Hi, here's a couple of patches that touch up the manpages, and one that enhances unconfigure.
Thanks, KBK
Description: Minus characters need to be escaped. Author: Kurt B. Kaiser <[email protected]> Index: remind/man/remind.1 =================================================================== --- remind.orig/man/remind.1 2011-04-03 15:39:01.000000000 -0400 +++ remind/man/remind.1 2011-04-03 16:54:03.000000000 -0400 @@ -225,7 +225,7 @@ pops up a window and displays its invocation arguments. You could use: .PP .nf - remind '-kxmessage %s &' ... + remind '\-kxmessage %s &' ... .fi .PP to have all of your \fBMSG\fR-type reminders processed using xmessage. @@ -706,7 +706,7 @@ The \fIback\fR specification in the reminder is used in this case: .PP .nf - REM Mon 1 -7 MSG Last Monday of every month. + REM Mon 1 \-7 MSG Last Monday of every month. .fi .PP A \fIback\fR is specified with one or two dashes followed by an integer. @@ -857,7 +857,7 @@ preceding it. The omitted days are counted. .PP .nf - REM 1 -1 OMIT Sat Sun MSG Last working day of month + REM 1 \-1 OMIT Sat Sun MSG Last working day of month .fi .PP Again, in the above example, the \fIback\fR of \-1 normally causes the @@ -985,7 +985,7 @@ scripts, where you can use the command: .PP .nf - remind -fa myreminders & + remind \-fa myreminders & .fi .PP This ensures that when you exit X-Windows, the \fBRemind\fR process is killed. @@ -1953,7 +1953,7 @@ .TP .B $LatDeg, $LatMin, $LatSec These specify the latitude of your location. \fB$LatDeg\fR can -range from -90 to 90, and the others from -59 to 59. Northern latitudes +range from \-90 to 90, and the others from \-59 to 59. Northern latitudes are positive; southern ones are negative. For southern latitudes, all three components should be negative. .TP @@ -1965,7 +1965,7 @@ .TP .B $LongDeg, $LongMin, $LongSec These specify the longitude of your location. \fB$LongDeg\fR can -range from -180 to 180. Western longitudes are positive; eastern +range from \-180 to 180. Western longitudes are positive; eastern ones are negative. .RS .PP @@ -2114,11 +2114,11 @@ write and execute permission testing. Alternatively, \fImode\fR can be a number as described in the UNIX \fBaccess\fR(2) system call. The function returns 0 if the file can be accessed with the specified \fImode\fR, -and -1 otherwise. +and \-1 otherwise. .TP .B args(s_fname) Returns the number of arguments expected by the user-defined function -\fIfname\fR, or -1 if no such user-defined function exists. Note that +\fIfname\fR, or \-1 if no such user-defined function exists. Note that this function examines only user-defined functions, not built-in functions. Its main use is to determine whether or not a particular user-defined function has been defined previously. The \fBargs()\fR function is @@ -2624,7 +2624,7 @@ moon displayed, you could use this in your reminder script: .PP .nf - REM [moondate(0)] PS [psmoon(0, -1, moontime(0)+"")] + REM [moondate(0)] PS [psmoon(0, \-1, moontime(0)+"")] .fi .PP Note how the time is coerced to a string by concatenating the null string. @@ -2666,7 +2666,7 @@ in calendar mode, or if a date has been supplied on the command line. .TP .B sgn(i_num) -Returns -1 if \fInum\fR is negative, 1 if \fInum\fR is positive, +Returns \-1 if \fInum\fR is negative, 1 if \fInum\fR is positive, and 0 if \fInum\fR is zero. .TP .B shell(s_cmd [,i_maxlen]) @@ -2703,7 +2703,7 @@ .PP .nf OMIT 14 May 2009 - SET a slide('2009-05-21', -5, "Sat", "Sun") + SET a slide('2009-05-21', \-5, "Sat", "Sun") .fi .PP takes \fIa\fR back to 2009-05-13. @@ -3045,7 +3045,7 @@ ; Executed except on 1 Nov ENDIF - IFTRIG 1 -1 OMIT Sat Sun +4 + IFTRIG 1 \-1 OMIT Sat Sun +4 ; Executed on last working day of month, ; and the 4 working days preceding it ELSE @@ -3073,7 +3073,7 @@ .nf FSET double(x) 2*x FSET yeardiff(date1, date2) year(date1) - year(date2) - FSET since(x) ord(year(trigdate())-x) + FSET since(x) ord(year(trigdate())\-x) .fi .PP The last function is useful in birthday reminders. For example: @@ -3197,7 +3197,7 @@ Here's an example: .PP .nf - FSET _sfun(x) choose(x, -60, 30, 15, 10, 3, 1, 1, 1, 1, 0) + FSET _sfun(x) choose(x, \-60, 30, 15, 10, 3, 1, 1, 1, 1, 0) REM AT 13:00 SCHED _sfun MSG foo .fi .PP @@ -3449,7 +3449,7 @@ following command will send PostScript code to standard output: .PP .nf - remind -p .reminders | rem2ps + remind \-p .reminders | rem2ps .fi .PP You can print a PostScript calendar by piping this to the \fBlpr\fR command. @@ -3458,7 +3458,7 @@ execute this command: .PP .nf - remind -c .reminders jan 1993 + remind \-c .reminders jan 1993 .fi .PP then \fBRemind\fR executes the script 31 times, once for each day in @@ -3691,7 +3691,7 @@ so to run in the daemon mode in the background, use: .PP .nf - remind -z .reminders & + remind \-z .reminders & .fi .PP If you use \fBsh\fR or \fBbash\fR, you may have to use the "nohup" command @@ -4106,7 +4106,7 @@ .PP The \fBSPECIAL\fR keyword is used to transmit "out-of-band" information to \fBRemind\fR backends, such as \fBtkremind\fR or \fBRem2PS\fR. -They are used only when piping data from a \fBremind -p\fR line. +They are used only when piping data from a \fBremind \-p\fR line. (Note that the COLOR special is an exception; it downgrades to the equivalent of MSG in \fBremind's\fR normal mode of operation.) .PP @@ -4147,7 +4147,7 @@ 1 the first quarter, 2 a full moon and 3 the last quarter. .PP \fImoonsize\fR is the diameter in PostScript units of the moon to -draw. If omitted or supplied as -1, the backend chooses an appropriate +draw. If omitted or supplied as \-1, the backend chooses an appropriate size. .PP \fIfontsize\fR is the font size in PostScript units of the \fImsg\fR @@ -4221,7 +4221,7 @@ .PP .nf REM 5 Feb 1991 AT 14:00 +45 *30 \\ - RUN mail -s "Meeting at %2" $LOGNAME </dev/null & + RUN mail \-s "Meeting at %2" $LOGNAME </dev/null & .fi .PP On 5 February, 1991, this reminder will mail @@ -4230,14 +4230,14 @@ and the body of the message will be blank. .PP .nf - REM AT 17:00 RUN echo "5:00pm - GO HOME!" | xless -g +0+0 & + REM AT 17:00 RUN echo "5:00pm - GO HOME!" | xless \-g +0+0 & .fi .PP This reminder will pop up an xless window at 5:00pm every day. The xless window will contain the line "5:00pm - GO HOME!" .PP .nf - REM AT 23:59 RUN (sleep 120; remind -a [filename()]) & + REM AT 23:59 RUN (sleep 120; remind \-a [filename()]) & .fi .PP This reminder will run at one minute to midnight. It will cause a new @@ -4255,7 +4255,7 @@ 1993, with all entries left blank. .PP .nf - REM CAL [trigdate()-date(year(trigdate()), 1, 1)+1] + REM CAL [trigdate()\-date(year(trigdate()), 1, 1)+1] .fi .PP This example puts an entry in each box of a calendar showing the number @@ -4315,7 +4315,7 @@ following sequence: .PP .nf - REM Mon 1 Sept SCANFROM [today()-7] SATISFY 1 + REM Mon 1 Sept SCANFROM [today()\-7] SATISFY 1 OMIT [trigdate()] REM Mon AFTER MSG Hello Index: remind/man/tkremind.1 =================================================================== --- remind.orig/man/tkremind.1 2011-04-03 16:46:06.000000000 -0400 +++ remind/man/tkremind.1 2011-04-03 16:46:21.000000000 -0400 @@ -179,7 +179,7 @@ .TP .B Show Today's Reminders on Startup If this is selected, \fBTkRemind\fR shows a text window containing reminders -which would be issued by "remind -q -a -r" on startup, and when the date +which would be issued by "remind \-q \-a \-r" on startup, and when the date changes at midnight. .TP @@ -268,7 +268,7 @@ When \fBTkRemind\fR invokes \fBRemind\fR, it supplies the option: .PP .nf - -itkremind=1 + \-itkremind=1 .fi .PP on the command line. So, in your \fBRemind\fR file, you can include:
Description: Fix a few manpage typos. Author: Kurt B. Kaiser <[email protected]> Index: remind/man/cm2rem.1 =================================================================== --- remind.orig/man/cm2rem.1 2011-04-03 16:57:34.000000000 -0400 +++ remind/man/cm2rem.1 2011-04-03 16:57:42.000000000 -0400 @@ -1,5 +1,5 @@ .TH CM2REM 1 "18 October 1999" -.UC4 +.UC 4 .SH NAME cm2rem.tcl \- Convert Sun's "cm" input file to Remind format .SH SYNOPSIS Index: remind/man/rem.1 =================================================================== --- remind.orig/man/rem.1 2011-04-03 16:57:34.000000000 -0400 +++ remind/man/rem.1 2011-04-03 16:57:42.000000000 -0400 @@ -1,5 +1,5 @@ .TH REM 1 "30 August 2007" -.UC4 +.UC 4 .SH NAME rem \- Invoke Remind with a default filename .SH SYNOPSIS Index: remind/man/rem2ps.1 =================================================================== --- remind.orig/man/rem2ps.1 2011-04-03 16:57:34.000000000 -0400 +++ remind/man/rem2ps.1 2011-04-03 16:57:42.000000000 -0400 @@ -1,5 +1,5 @@ .TH REM2PS 1 "11 April 2005" -.UC4 +.UC 4 .SH NAME rem2ps \- draw a PostScript calendar from Remind output .SH SYNOPSIS Index: remind/man/tkremind.1 =================================================================== --- remind.orig/man/tkremind.1 2011-04-03 16:57:34.000000000 -0400 +++ remind/man/tkremind.1 2011-04-03 16:58:24.000000000 -0400 @@ -74,7 +74,7 @@ the check button to enable an expiry date, and fill in the values using pull-down menus. -The third control specifes how much advance notice you want (if any), +The third control specifies how much advance notice you want (if any), and whether or not weekends and holidays are counted when computing advance notice.
Description: The unconfigure script should also remove www/Makefile Author: Kurt B. Kaiser <[email protected]> diff -urNad remind~/unconfigure remind/unconfigure --- remind~/unconfigure 2008-02-25 15:53:49.000000000 -0500 +++ remind/unconfigure 2008-02-25 20:44:56.000000000 -0500 @@ -1,6 +1,6 @@ #!/bin/sh echo "Unconfiguring Remind..." -echo rm -f config.cache config.log config.status src/Makefile src/config.h src/version.h -rm -f config.cache config.log config.status src/Makefile src/config.h src/version.h +echo rm -f config.cache config.log config.status src/Makefile src/config.h src/version.h www/Makefile +rm -f config.cache config.log config.status src/Makefile src/config.h src/version.h www/Makefile exit 0
_______________________________________________ Remind-fans mailing list [email protected] http://lists.roaringpenguin.com/cgi-bin/mailman/listinfo/remind-fans Remind is at http://www.roaringpenguin.com/products/remind
