diff options
author | Craig Earls <enderw88@gmail.com> | 2013-06-02 20:46:29 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-06-02 20:46:29 -0700 |
commit | fda778f2c0ef0da36f1a5917befae73fd8fcddec (patch) | |
tree | d65e485e23ff12bbc348c6358bf6030fe7268cc4 /lisp | |
parent | 85ba3bd1ca36c0ce4dbb053eaf2bc93e8f0710fa (diff) | |
download | fork-ledger-fda778f2c0ef0da36f1a5917befae73fd8fcddec.tar.gz fork-ledger-fda778f2c0ef0da36f1a5917befae73fd8fcddec.tar.bz2 fork-ledger-fda778f2c0ef0da36f1a5917befae73fd8fcddec.zip |
Fix bug 969, payee completing only works with plain alpha chars
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ldg-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ldg-mode.el b/lisp/ldg-mode.el index f7e3d0e6..ebe1e4bd 100644 --- a/lisp/ldg-mode.el +++ b/lisp/ldg-mode.el @@ -87,7 +87,7 @@ Can indent, complete or align depending on context." (if (= (point) (line-beginning-position)) (indent-to ledger-post-account-alignment-column) (if (and (> (point) 1) - (looking-back "[:A-Za-z0-9]" 1)) + (looking-back "\\([[:print:]]\\)" 1)) (ledger-pcomplete interactively) (ledger-post-align-postings)))) |