diff options
author | John Wiegley <johnw@newartisans.com> | 2011-10-04 13:28:36 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-10-04 13:28:36 -0700 |
commit | 09a5ef9e29772163e21eedde511b2fd6e1527799 (patch) | |
tree | b3c1878428b939d1ba9292bb140f5c1a7a041262 /lisp | |
parent | f0791bbd7297e737d9e13d0b0bb21473b173b2a7 (diff) | |
parent | 8834fc0c15a53b8db8c2aaee95d2b25a050fe786 (diff) | |
download | fork-ledger-09a5ef9e29772163e21eedde511b2fd6e1527799.tar.gz fork-ledger-09a5ef9e29772163e21eedde511b2fd6e1527799.tar.bz2 fork-ledger-09a5ef9e29772163e21eedde511b2fd6e1527799.zip |
Merge pull request #37 from dpiddy/emacs-highlight-fix
Highlight account names with spaces
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ldg-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ldg-mode.el b/lisp/ldg-mode.el index 3e9a9106..cc9e8d92 100644 --- a/lisp/ldg-mode.el +++ b/lisp/ldg-mode.el @@ -10,8 +10,8 @@ ;;("^[0-9]+[-/.=][-/.=0-9]+\\s-+\\(([^)]+)\\s-+\\)?\\([*].+?\\)\\(\\( ;\\| ;\\|$\\)\\)" ;; 2 font-lock-type-face) ("^\\s-+\\([*]\\s-*\\)?\\(\\([[(]\\)?[^*: - ]+?:[^]); - ]+?\\([])]\\)?\\)\\( \\| \\|$\\)" + ]+?:\\([^]); + ]\\|\\s-\\)+?\\([])]\\)?\\)\\( \\| \\|$\\)" 2 font-lock-keyword-face) ("^\\([~=].+\\)" 1 font-lock-function-name-face) ("^\\([A-Za-z]+ .+\\)" 1 font-lock-function-name-face)) |