'[:graph:]' now excludes whitespace, not just ' '
commit3074a9fad1c7c57948521125ee947bfa11ae185b
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 16 Apr 2015 06:45:08 +0000 (15 23:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 16 Apr 2015 06:47:01 +0000 (15 23:47 -0700)
tree9f13c9d28a6e54ea12c7096f0d34652ffce15f6e
parent5161c9ca6a6107da30d411fb2ad72e01d08e5704
'[:graph:]' now excludes whitespace, not just ' '

* doc/lispref/searching.texi (Char Classes):
* lisp/emacs-lisp/rx.el (rx): Document [:graph:] to be [:print:]
sans whitespace (not sans space).
* src/character.c (graphicp): Exclude all Unicode whitespace chars,
not just space.
* src/regex.c (ISGRAPH): Exclude U+00A0 (NO-BREAK SPACE).
doc/lispref/searching.texi
lisp/emacs-lisp/rx.el
src/character.c
src/regex.c