ledger-regex: Indian Rupee Symbol

Added the ₹ symbol to ledger-amount-regex
This commit is contained in:
Alok Parlikar 2014-12-07 21:42:31 -05:00
parent 2f0dcec10e
commit eeb120f5e4

View file

@ -26,10 +26,10 @@
(defconst ledger-amount-regex
(concat "\\( \\|\t\\| \t\\)[ \t]*-?"
"\\([A-Z$€£_(]+ *\\)?"
"\\([A-Z$€£_(]+ *\\)?"
"\\(-?[0-9,\\.]+?\\)"
"\\(.[0-9)]+\\)?"
"\\( *[[:word:]€£_\"]+\\)?"
"\\( *[[:word:]€£_\"]+\\)?"
"\\([ \t]*[@={]@?[^\n;]+?\\)?"
"\\([ \t]+;.+?\\|[ \t]*\\)?$"))