8000 FIX: re-order symbol and acent in mathtext by tacaswell · Pull Request #4588 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

FIX: re-order symbol and acent in mathtext #4588

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 31, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
FIX: re-order symbol and acent in mathtext
Try to find symbols before finding accents

Closes #4462
  • Loading branch information
tacaswell committed Jul 22, 2015
commit ae91e9f75145e2a4062ee37d375b759fd9774abb
4 changes: 2 additions & 2 deletions lib/matplotlib/mathtext.py
620B
Original file line numberDiff line number Diff line change
Expand Up @@ -2263,8 +2263,8 @@ def __init__(self):
| Error("Expected \operatorname{value}"))
)

p.placeable <<= ( p.accent # Must be first
| p.symbol # Must be second
p.placeable <<= ( p.symbol # Must be first
| p.accent # Must be second
| p.c_over_c
| p.function
| p.group
Expand Down
0