Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
ef976c93
Commit
ef976c93
authored
Mar 10, 2011
by
Alexandre Duret-Lutz
Browse files
* iface/dve2/dve2.cc (convert_aps): Fix two typos while
parsing >= and >, mistakenly registered as <= and <.
parent
6d213e5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
ef976c93
2011-03-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* iface/dve2/dve2.cc (convert_aps): Fix two typos while
parsing >= and >, mistakenly registered as <= and <.
2011-03-07 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Remove the Nips interface.
...
...
iface/dve2/dve2.cc
View file @
ef976c93
...
...
@@ -398,12 +398,12 @@ namespace spot
case
'>'
:
if
(
s
[
1
]
==
'='
)
{
op
=
OP_
L
E
;
op
=
OP_
G
E
;
s
+=
2
;
}
else
{
op
=
OP_
L
T
;
op
=
OP_
G
T
;
++
s
;
}
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment