diff options
author | Craig Earls <enderw88@gmail.com> | 2016-02-28 18:34:34 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2016-02-28 18:34:34 -0700 |
commit | 6770d00dba467d55921c3676a339cac8b221f214 (patch) | |
tree | 486c735dca092ea9698460ff9660168bace3b2f2 /lisp/ledger-post.el | |
parent | b7f84d69001f75a18807772dee514f5918e3a926 (diff) | |
parent | 432733de2d102274c158c7c01a96f1bbd45c4486 (diff) | |
download | fork-ledger-6770d00dba467d55921c3676a339cac8b221f214.tar.gz fork-ledger-6770d00dba467d55921c3676a339cac8b221f214.tar.bz2 fork-ledger-6770d00dba467d55921c3676a339cac8b221f214.zip |
Merge pull request #448 from ledger/fontification-fix-spacemacs
Globally changed set-text-properties to use 'font-lock-face vice 'fac…
Diffstat (limited to 'lisp/ledger-post.el')
-rw-r--r-- | lisp/ledger-post.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ledger-post.el b/lisp/ledger-post.el index 973f2260..39bc6b26 100644 --- a/lisp/ledger-post.el +++ b/lisp/ledger-post.el @@ -170,7 +170,7 @@ regular text." (cond ((nth 4 (syntax-ppss)) (call-interactively 'ledger-post-align-postings) - (fill-paragraph)) + (fill-paragraph 0)) ((use-region-p) (call-interactively 'ledger-post-align-postings)) (t (call-interactively 'ledger-post-align-xact)))) |