Jason Rumney <[EMAIL PROTECTED]> writes: > Shouldn't all responses that do not start with a status code be ignored? > > ie > > "^[^1-9][^0-9][^0-9]"
Be careful when negating regexps, as this is seldom as easy as it seems. An actual negation of "^[1-9][1-9][1-9]" would be: "^\\([^1-9]\\|[1-9][^1-9]\\|[1-9][1-9][^1-9]\\)". -- Michael Welsh Duggan ([EMAIL PROTECTED]) _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel