summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Had fun with a spell checker.mjl2004-05-221-58/+57
| | | Also, try to canonize attributions.
* - don't catch STOP, TSTP, QUIT; the first you cannot catch and the other twochristos2004-05-021-22/+24
| | | | | you should not. - don't accept delay == 1000, because it turns to 0 and fix the number parsing - misc KNF cleanups.
* s/the the/the/ (only in sources that aren't regularly imported fromsimonb2004-04-232-4/+4
| | | elsewhere).
* Undef bool before including <curses.h>, since it tries to typedefhe2004-04-116-6/+12
| | | | | bool. Otherwise we get (at least on gcc 2.95.3) an empty declaration warning from "typedef char char;" due to the #define of bool in phantstruct.h.
* Rework to use curses.h only on the target, not on the host.ross2004-04-079-11/+19
|
* If the current player has no cards, skip to the other player.jdc2004-04-061-2/+15
| | | | While we're here, make this compile with -DDEBUG. Fixes PR bin/12530 from Thomas Klausner.
* Properly handle -d 1000, OK'd by jsmhubertf2004-03-291-3/+8
|
* It's "its".snj2004-03-291-1/+1
|
* Spell "political" correctly and capitalize a last name.snj2004-03-291-1/+1
|
* s/feal/feel/snj2004-03-281-1/+1
|
* s/venomenous/venomous/snj2004-03-281-1/+1
|
* becuase -> because. From Peter Postma.wiz2004-02-241-2/+2
|
* Encode and decode more characters. Don't put commas after everyjsm2004-02-131-74/+88
| | | | | | character. Don't encode whitespace as "...". Don't fail decoding across a 1024-byte boundary. Mark end of message appropriately. From OpenBSD but with punctuation taken from ITU-T Recommendation F.1 (03/98).
* Uppercase CPU, plural is CPUs.wiz2004-02-134-14/+11
|
* |fmt; add single quotes around a plus.wiz2004-02-091-3/+5
|
* Mark unused parameters, nonreturning functions and format functions injsm2004-02-089-33/+35
| | | the few cases not already marked.
* Hide the cursor if possible. From OpenBSD.jsm2004-02-082-4/+6
|
* Fix race in parallel make when creating multiple targets in one operation.lukem2004-02-081-3/+6
|
* Separate primes manpage from that of factor. Correct DIAGNOSTICSjsm2004-02-084-49/+96
| | | information.
* Check large factor for being prime before applying Pollard'sjsm2004-02-081-6/+14
| | | | | | algorithm; fixes "factor 2147483647111311". Correct comment; algorithm is Pollard p-1, not Pollard rho. Increase base if p-1 algorithm reaches 1; fixes "factor 99999999999991". Testcases from David A Bagley <bagleyd@tux.org>.
* Control -d by #ifdef DEBUG; adjust usage message accordingly. Bugjsm2004-02-081-3/+7
| | | | reported by Malcolm Parsons <malcolm@ivywell.screaming.net> in Debian bug 84852.
* Use standard C abs function rather than local macro.jsm2004-02-082-4/+4
|
* Mark variables changed between setjmp and longjmp as volatile ratherjsm2004-02-082-14/+7
| | | than just taking their addresses.
* Fix grammar (bug reported by Thomas Bushnell BSG <tb@MIT.EDU> injsm2004-02-081-2/+2
| | | Debian bug 61846).
* Remove uses of __P.jsm2004-01-27114-2349/+2349
|
* Include <sys/stat.h>.jsm2004-01-271-2/+4
|
* Include <sys/types.h>.jsm2004-01-271-1/+3
|
* Include <sys/endian.h>.jsm2004-01-271-1/+2
|
* Include <limits.h> instead of <machine/limits.h>.jsm2004-01-271-3/+3
|
* Include <sys/endian.h>.jsm2004-01-271-1/+2
|
* Include <sys/endian.h> instead of <machine/endian.h>. Includejsm2004-01-271-3/+4
| | | <stdlib.h>.
* Include <sys/endian.h>.jsm2004-01-271-2/+3
|
* Use int for wait status.jsm2004-01-271-4/+4
|
* Rename yn to yncoms to avoid conflict with GCC 3.4 built-in XSIjsm2004-01-263-7/+7
| | | function.
* Rename rint to receive_intr to avoid conflict with GCC 3.4 built-in C99jsm2004-01-263-8/+8
| | | function.
* Use PROG_CXX so we don't need to include -lstdc++ explicitly. From Nick Hudson.christos2004-01-051-4/+4
|
* Move AUTHORS section directly before BUGS section.wiz2004-01-031-4/+4
| | | Suggested by jmc@openbsd.
* Typo fixes.mjl2004-01-012-4/+4
|
* Bump date for previous. Remove superfluous .Pp.wiz2004-01-011-3/+2
|
* Score is in upper right corner, not upper left corner. Patch fromjsm2004-01-011-2/+2
| | | Robert Hunter <roh@cryptocracy.hn.org> in Debian bug 209034.
* Fix typo. Patch from Joey Hess <joeyh@debian.org>.jsm2004-01-011-2/+2
|
* Don't use -fwritable-strings. Add one more const.jsm2004-01-012-4/+4
|
* When cleaning up, only close files that have been opened successfully.jsm2004-01-012-7/+11
| | | | | When reporting errors for failing to open files, give error text rather than errno number. Patch from Joey Hess <joey@kitenet.net> for Debian bug 187251 from Mikael Hedin <micce@debian.org>.
* Refer to 'O' rather than 'o' as command to set options. Bug reportedjsm2004-01-011-4/+4
| | | by Christian Garbs <debian@cgarbs.de> in Debian bug 191452.
* Return proper fortune length from fortlen for fortune files withoutjsm2004-01-011-3/+3
| | | | STR_RANDOM or STR_ORDERED rather than comparing it to SLEN. Bug reported by Simon Williams <simon@no-dns-yet.org.uk>.
* Show residual probability rather than non-residual in "No place to putjsm2004-01-011-4/+4
| | | | | residual probability" error message. Distribute residual probability correctly rather than all to one file. Patch from Mike Castle <dalgoda@ix.netcom.com>.
* Make dot and winnerdot of type double. Patch from Jan Vornbergerjsm2004-01-011-3/+4
| | | <jan@uos.de> in Debian bug 197816.
* Only score as a Gammon or a Backgammon if the opponent hasn't removedjsm2004-01-011-3/+3
| | | | | any pieces, not if the opponent has removed pieces but has had a piece knocked back to the bar afterwards. Fixes Debian bug 185101 from Konstantin Seiler <list@kseiler.de>.
* Make tutorial text match actual moves. From FreeBSD via OpenBSD.jsm2004-01-011-4/+4
| | | Fixes Debian bug 212478 from Jim W. Jaszewski <grok@sprint.ca>.
* Fix capitalisation of compass directions.jsm2004-01-011-3/+3
|