* Fix a startup crash that's extremely easy to trigger on OpenBSD (patch-draw_c). * Various fixes from a forked Github version (there was no official elvis release since 2004), clang warns about most of them. * Remove some questionable/broken/dangerous features: backtick support in filenames, WYSIWYG for nroff/tex files, and HTTP/FTP support. Looking at the code, I'd feel better having less features, here. Please complain if you really want them. * Remove dead FTP mirrors from MASTER_SITES, and use an HTTP server instead. * Remove some previous patches of mine which only dealt with whitespace in man pages: fixing that was just useless noise.
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
$OpenBSD: patch-region_c,v 1.1 2017/04/17 21:43:15 sthen Exp $
|
|
|
|
Fix an obvious typo.
|
|
|
|
--- region.c.orig Tue Oct 21 04:32:25 2003
|
|
+++ region.c Tue Aug 16 19:52:41 2016
|
|
@@ -409,7 +409,7 @@ RESULT ex_region(xinf)
|
|
if (comment)
|
|
{
|
|
*comment++ = '\0';
|
|
- while (*comment == ' ');
|
|
+ while (*comment == ' ')
|
|
comment++;
|
|
if (*comment == '\0')
|
|
comment = xinf->rhs;
|