diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 02:28:29 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 02:28:29 +0100 |
commit | d0020c7f6faeff4b415f15884eea3270d306aff9 (patch) | |
tree | b7d49fd2296dd61845e7a137415c69b4b3dbb0a0 | |
parent | 0d01c262c0ed23ef950530c743b023e89ef4a821 (diff) | |
download | sciteco-d0020c7f6faeff4b415f15884eea3270d306aff9.tar.gz |
add form feed to list of whitespace characters
-rw-r--r-- | parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ State::get_next_state(gchar chr) StateStart::StateStart() : State() { transitions['\0'] = this; - init(" \r\n\v"); + init(" \f\r\n\v"); transitions['!'] = &states.label; transitions['^'] = &states.control; |