summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-02-16sync synopsis and usage(); mostly from Igor SobradoJason McIntyre
2007-02-16couple more entriesMichael Shalayeff
2007-02-16Correct function name in comment.Ray Lai
From Pierre Riteau <pierre dot riteau at free dot fr>. OK xsa@.
2007-02-14sync some manual page entries with actual usage.Niall O'Higgins
ok jmc@, xsa@ mostly From: Igor Sobrado <igor at string1.ciencias.uniovi.es>
2007-02-14typos in comments; ok jmc@Kevin Steves
2007-02-14more refinements for the interactive commands section; ok ottoJason McIntyre
2007-02-14Fix spacing in Makefile.Niall O'Higgins
ok joris@ From: Igor Sobrado <igor at string1.ciencias.uniovi.es>
2007-02-13- Be explicit on command line checking, instead of relying on patterns,Matthias Kilian
which may be NULL (e.g. -e ''). - let add_pattern() decide how to deal with empty patterns, don't do magic in read_patterns(). This unbreaks stuff like grep -e '', and makes grep -f <file> more POSIX compliant. Semantics for grep -f /dev/null (or any other empty file) may be questionable, but this case isn't specified by POSIX, and matching nothing at all seems to be sane. Thanks to otto@, who mentioned potential problems related to the -x option with the first patch i sent. ok jaredy@ (some time ago), otto@, millert@
2007-02-13Fix a problem with wrapped incremental searches.Kjell Wooding
Basically, on wrap, the line pointer and offset would get out of sync, leading to incorrect line numbers or a segfault. Deanna Phillips did all the work of spotting it tracking it down to the right function. Thanks! While here, add emacs-like messages for wrapped and failed incremental searches. Tested by Deanna.
2007-02-13zap unused CVS_ISDIR() and CVS_ISFILE() macros. OK joris@.Xavier Santolaria
2007-02-13mark up `dumb' using .Em, to be consistent with an earlierJason McIntyre
mark up of `intelligent';
2007-02-13improve the description for -C;Jason McIntyre
started by a mail from Igor Sobrado; ok otto
2007-02-12if -f is not used, readlink should not print anything on error, but ifOtto Moerbeek
-f is used, handle errors like it should. ok'ed by deraadt@ some time ago but then forgotten
2007-02-12remove unused leftovers from openrcs; OK joris@.Xavier Santolaria
2007-02-09document how signalling via `k' works, after some help from theo and miod;Jason McIntyre
2007-02-09sync somewhat to the man page;Jason McIntyre
started by a diff from Mark Lumsden
2007-02-09clean up the interactive commands list, mainly by showingJason McIntyre
the arguments these commands take; based on some improvements from Mark Lumsden
2007-02-09correctly skip invalid entries when usingJoris Vink
getdirentries(2). ok otto@
2007-02-09if a directory exists in the working dir but not in theXavier Santolaria
repository, mark it as to be skipped so we do not try to lock it on update and miserably fail... OK joris@.
2007-02-09remove the cvs_file_classify() `loud' argument, it was usedJoris Vink
in the old school days and serves no purpose what so ever now. otto@ mentioned this to me a while ago
2007-02-09strtol(3) -> strtonum(3)Joris Vink
2007-02-08Fix a commentKjell Wooding
2007-02-08comment a functionKjell Wooding
2007-02-08Do all allocation and deallocation of shstr in elf_symload() toRay Lai
prevent double-freeing shstr. Also don't free known NULL values (*pnames and *psnames). Initially inspired by Charles Longeau's first diff to tech@; he later sent a second diff to tech@ nearly identical to this commit. Freaky. OK mickey@.
2007-02-08When getc() returns EOF, either feof() or ferror() will return true,Ray Lai
so no need to check them. Removes a bitwise OR that should have been a logical OR as well. From Pierre Riteau <pierre dot riteau at free dot fr>. OK joris@.
2007-02-08Remove double semicolons.Ray Lai
From Pierre Riteau <pierre dot riteau at free dot fr>. OK jaredy@ and moritz@.
2007-02-07fstat() -> lstat() in a few select cases,Todd T. Fries
this fixes a bug where opencvs update would abort if a link existed that pointed to a non-existent file/dir ok joris@
2007-02-07strl* overload; use xsnprintf(); OK ray@.Xavier Santolaria
2007-02-07its four-byte, not four byte; ok jmc@Otto Moerbeek
2007-02-07check st_name validity also check for overflow and not only for zero; found ↵Michael Shalayeff
by Charles Longeau <chl@tuxfamily.org>
2007-02-07space before punctuation;Jason McIntyre
2007-02-06document -D; ok jmc@Otto Moerbeek
2007-02-06remove a comment which is no longer true; ok ottoJason McIntyre
2007-02-06sync synopsis and usage();Jason McIntyre
2007-02-06+.Ex -std odJason McIntyre
2007-02-06sort options and sync usage();Jason McIntyre
2007-02-06switch to .Ex and remove some unnecessary brackets;Jason McIntyre
2007-02-06fix some dodgy displays;Jason McIntyre
2007-02-06one more epoch -> Epoch and a grammar fix; ok millertJason McIntyre
2007-02-06discuss consistently "the Epoch";Jason McIntyre
2007-02-06replace strl* overload and xstrdup() misuse by xsnprintf();Xavier Santolaria
OK joris@.
2007-02-06document the `+' interactive command more fully;Jason McIntyre
help/ok otto
2007-02-06sort options;Jason McIntyre
2007-02-06Compact help screen a bit so it fits in 24 lines again. Based on aOtto Moerbeek
diff from Mark Lumsden.
2007-02-04Complain of the user specifies a negative number for the 's' command.Otto Moerbeek
From Mark Lumsden.
2007-02-04Introducing the '+' interactive command to reset all filters.Otto Moerbeek
From Mark Lumsden. ok millert@ deraadt@ simon@
2007-02-04Use the right HEADNAME. Sometimes compiler warnings should not beOtto Moerbeek
ignored. ok xsa@ joris@
2007-02-04actully use a default value when we say so. from Mark LumsdenOtto Moerbeek
2007-02-04long and long long is not the same on 32 bits archsOtto Moerbeek
2007-02-04dont bother trying to parse empty lines as dates.Joris Vink
cuts away some cpu time. from Tobias Ulmer, thanks a million!