Allow any printable character in account names.
This commit is contained in:
parent
59613845e7
commit
a28c32b081
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@
|
||||||
(defconst ledger-posting-regex
|
(defconst ledger-posting-regex
|
||||||
(concat "^[ \t]+ ?" ;; initial white space
|
(concat "^[ \t]+ ?" ;; initial white space
|
||||||
"\\([*!]\\)? ?" ;; state, subexpr 1
|
"\\([*!]\\)? ?" ;; state, subexpr 1
|
||||||
"\\([[:word:]: ]+?\\(\n\\|[ \t][ \t]\\)\\)" ;; account, subexpr 2
|
"\\(.+?\\(\n\\|[ \t][ \t]\\)\\)" ;; account, subexpr 2
|
||||||
"\\([^;\n]*\\)" ;; amount, subexpr 4
|
"\\([^;\n]*\\)" ;; amount, subexpr 4
|
||||||
"\\(.*\\)" ;; comment, subexpr 5
|
"\\(.*\\)" ;; comment, subexpr 5
|
||||||
))
|
))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue