# HG changeset patch # User Richard M. Stallman # Date 762756124 0 # Node ID 390dfe557c7de1e9981e4dce86c629447a9b7a20 # Parent f5f8e0bcfaafaf5f0fc3508cee3606047db687f2 (skip_chars): Treat `-' as alias for space, if syntaxp. diff -r f5f8e0bcfaaf -r 390dfe557c7d src/search.c --- a/src/search.c Fri Mar 04 04:38:06 1994 +0000 +++ b/src/search.c Fri Mar 04 04:42:04 1994 +0000 @@ -472,6 +472,9 @@ } } + if (syntaxp && fastmap['-'] != 0) + fastmap[' '] = 1; + /* If ^ was the first character, complement the fastmap. */ if (negate)