diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 20:49:36 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 20:53:55 +0100 |
commit | ad3d2f4a63cddd312cdf3571c42b420b5b23e50e (patch) | |
tree | c0dd5470a75848e2fa9d342af3c9c10f1b6336ce /src/parser.cpp | |
parent | 0c87bad5abea3b362165fa4fdbf311e124dd608a (diff) | |
download | sciteco-ad3d2f4a63cddd312cdf3571c42b420b5b23e50e.tar.gz |
implemented pQq and :Qq commands
Diffstat (limited to 'src/parser.cpp')
-rw-r--r-- | src/parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 8c9e209..0e10347 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -517,7 +517,7 @@ StateStart::StateStart() : State() transitions['['] = &States::pushqreg; transitions[']'] = &States::popqreg; transitions['G'] = &States::getqregstring; - transitions['Q'] = &States::getqreginteger; + transitions['Q'] = &States::queryqreg; transitions['U'] = &States::setqreginteger; transitions['%'] = &States::increaseqreg; transitions['M'] = &States::macro; |