Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | ledger-mode: Add `ledger-remove-effective-date'. | Moritz Ulrich | 2013-12-30 | 1 | -0/+23 | |
| | | | | | | | | Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de> | |||||
| * | emacs-mode: Prefix every function/variable/macro with ledger-. | Moritz Ulrich | 2013-12-29 | 2 | -32/+33 | |
|/ | | | | | | | | This is the common convention in Emacs Lisp. Not following it might cause problems with other packages as functions/variables/macros are always visible to other modules. Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de> | |||||
* | Fix `ledger-string-to-number' for decimal-comma | Moritz Ulrich | 2013-12-28 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | --=-=-= Content-Type: text/plain Hi John, Small bug, caused by ill-formatted elisp. This is a small patch, so i think making a fork & opening a Pull Request is a bit too much. I'll go this route if I make bigger contributions in the future. From de1fb19ded5300a227d58e3d3094928b211db09b Mon Sep 17 00:00:00 2001 From: Moritz Ulrich <moritz@tarn-vedra.de> Date: Sat, 28 Dec 2013 22:37:54 +0100 Subject: [PATCH] ledger-string-to-number: Fix nil return value with decimal-comma. Unfavorable formatting hid this bug pretty well. In case of true-ish `decimal-comma' or "decimal-comma' in `ledger-environment-alist', the ill-formatted `if' (and the whole function) returns nil. Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de> | |||||
* | Merge pull request #225 from 4ourbit/patch-1 | John Wiegley | 2013-12-23 | 1 | -1/+1 | |
|\ | | | | | fix for unexpected point movement | |||||
| * | fix for unexpected point movement | 4ourbit | 2013-12-23 | 1 | -1/+1 | |
|/ | | | bug fixed: point moves to previous char when called at whitespace-only line | |||||
* | remove contrib/vim and point to new location | Johann Klähn | 2013-12-16 | 6 | -871/+7 | |
| | ||||||
* | Merge pull request #223 from vanicat/t/schedule-with-args | Craig Earls | 2013-12-12 | 1 | -6/+21 | |
|\ | | | | | I should have done this a long time ago, but I got too lazy. Thanks Remi! | |||||
| * | ledger-schedule-upcoming take argument. | Rémi Vanicat | 2013-12-12 | 1 | -5/+19 | |
| | | | | | | | | | | | | | | One can forget to run ledger-schedule-upcoming for some time. Then there is the risk that ledger-schedule-look-backward is too short. This will open the possibility to use a different file, or to change the period backward or forward for this kind of case. | |||||
| * | Pop the new schedule buffers | Rémi Vanicat | 2013-12-12 | 1 | -1/+2 | |
|/ | ||||||
* | ledger-mode: Also bind g to ledger-report-redo, as is standard elsewhere | Steve Purcell | 2013-12-11 | 1 | -0/+1 | |
| | ||||||
* | Don't default fill-column to 8 in Emacs | Steve Purcell | 2013-12-11 | 1 | -1/+0 | |
| | ||||||
* | ledger-mode: Fix a number of byte-compilation warnings | Steve Purcell | 2013-12-11 | 4 | -10/+10 | |
| | ||||||
* | ledger-mode: Add missing argument to ledger-delete-current-transaction | Steve Purcell | 2013-12-11 | 1 | -1/+1 | |
| | ||||||
* | ledger-mode: Remove duplication in ledger-set-{year,month} | Steve Purcell | 2013-12-11 | 1 | -6/+8 | |
| | ||||||
* | ledger-mode: Add namespace prefix to highlight-overlay | Steve Purcell | 2013-12-11 | 2 | -5/+5 | |
| | | | | | make-variable-buffer-local is a top-level form: this commit moves that call from ledger-mode to next to the variable's declaration. | |||||
* | ledger-mode: Use easymenu to remove boilerplate | Steve Purcell | 2013-12-11 | 3 | -85/+90 | |
| | | | | | Among other benefits, this lets us define the menu entries from top to bottom, rather than in reverse. | |||||
* | Merge pull request #221 from purcell/top-level-keymaps | Craig Earls | 2013-12-09 | 3 | -76/+81 | |
|\ | | | | | ledger-mode: declare keymaps at the top level | |||||
| * | ledger-mode: declare keymaps at the top level | Steve Purcell | 2013-12-09 | 3 | -76/+81 | |
|/ | ||||||
* | Merge pull request #220 from purcell/ledger-mode-syntax-table | Craig Earls | 2013-12-09 | 1 | -0/+9 | |
|\ | | | | | ledger-mode: define and use a syntax table so that comments are handled properly | |||||
| * | ledger-mode: define and use a syntax table so that comments are handled properly | Steve Purcell | 2013-12-09 | 1 | -0/+9 | |
|/ | | | | | | | | Specifically, functionality which uses syntax-ppss to detect comments needs the syntax table to be aware of them. A prime example is goto-address-prog-mode. This commit adds a basic syntax table for this purpose. | |||||
* | Merge pull request #218 from vanicat/t/reload-init | Craig Earls | 2013-11-26 | 1 | -1/+2 | |
|\ | | | | | | | | | Reload init when calling ledger-init-load-init-file again. I don't know why I missed that before. This is how it is supposed to work. Thanks. | |||||
| * | Reload init when calling ledger-init-load-init-file again. | Rémi Vanicat | 2013-11-26 | 1 | -1/+2 | |
| | | | | | | | | | | | | When the ledger-init-load-init-file was called again, it used to parse ledger init file, and to throw away the result. No you can use it to load this file again when you have change something in it. | |||||
* | | Merge pull request #217 from vanicat/t/scheduling-docs | Craig Earls | 2013-11-26 | 1 | -5/+9 | |
|\ \ | |/ |/| | Correction of docs on Scheduling Transactions | |||||
| * | Correction of docs on Scheduling Transactions | Rémi Vanicat | 2013-11-26 | 1 | -5/+9 | |
|/ | ||||||
* | Merge branch 'ledger-mode-automatic-transactions' | Craig Earls | 2013-11-12 | 13 | -617/+626 | |
|\ | | | | | | | | | Conflicts: lisp/ledger-post.el | |||||
| * | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-11-06 | 4 | -10/+11 | |
| |\ | ||||||
| * \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-10-02 | 5 | -4115/+7 | |
| |\ \ | ||||||
| * \ \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-09-20 | 7 | -55/+32 | |
| |\ \ \ | ||||||
| * \ \ \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-08-20 | 2 | -2/+11 | |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lisp/ledger-reconcile.el | |||||
| * \ \ \ \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-07-19 | 5 | -18/+17 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-07-03 | 1 | -3/+10 | |
| |\ \ \ \ \ \ | ||||||
| * | | | | | | | Add Schedule Upcoming to Ledger menu | Craig Earls | 2013-07-03 | 2 | -1/+3 | |
| | | | | | | | | ||||||
| * | | | | | | | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-07-02 | 19 | -445/+443 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lisp/ledger-init.el lisp/ledger-mode.el lisp/ledger-reconcile.el lisp/ledger-schedule.el | |||||
| * \ \ \ \ \ \ \ | Merge branch 'master' into ledger-mode-automatic-transactions | Craig Earls | 2013-07-02 | 2 | -91/+52 | |
| |\ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | Schedule documentation update | Craig Earls | 2013-07-02 | 1 | -2/+26 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Formatting cleanup | Craig Earls | 2013-07-02 | 1 | -2/+2 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Formatting changes and initial inclusion of ledger-schedule | Craig Earls | 2013-07-02 | 11 | -784/+769 | |
| | | | | | | | | | | ||||||
* | | | | | | | | | | Fix values pushed to calc | Craig Earls | 2013-11-12 | 1 | -2/+2 | |
| |_|_|_|_|_|_|_|/ |/| | | | | | | | | ||||||
* | | | | | | | | | Merge pull request #214 from purcell/patch-1 | Craig Earls | 2013-11-03 | 1 | -1/+1 | |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | ledger-mode: Fix provided feature to match file/package name | |||||
| * | | | | | | | | | Fix provided feature to match file/package name | Steve Purcell | 2013-11-03 | 1 | -1/+1 | |
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | For `require` to work correctly, the provided feature name must match the name of the file. | |||||
* | | | | | | | | | And const directives in account.h and commodity.h to allow build in OS X ↵ | Craig Earls | 2013-10-30 | 2 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mavericks. | |||||
* | | | | | | | | | install texinfo files | Johann Klähn | 2013-10-23 | 1 | -7/+8 | |
| |_|_|_|_|_|_|/ |/| | | | | | | | ||||||
* | | | | | | | | Merge pull request #213 from kain88-de/readme_typo | John Wiegley | 2013-09-30 | 1 | -1/+1 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | fix README.md build command | |||||
| * | | | | | | | | fix README.md build command | Max Linke | 2013-09-28 | 1 | -1/+1 | |
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --prefix= should not be passed to cmake directly. If the extra '--' is removed then the prefix get passed correctly to cmake. | |||||
* | | | | | | | | Merge pull request #212 from bentglasstube/master | Craig Earls | 2013-09-24 | 1 | -1/+1 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Fix reference to old pattern negation syntax | |||||
| * | | | | | | | | Fix reference to old pattern negation syntax | Alan Berndt | 2013-09-24 | 1 | -1/+1 | |
|/ / / / / / / / | ||||||
* | | | | | | | | Merge pull request #211 from mneilsen/master | John Wiegley | 2013-09-23 | 1 | -4/+4 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Update ledger-mode's "Quick Installation" docs | |||||
| * | | | | | | | | Update ledger-mode's "Quick Installation" docs | Mike Neilsen | 2013-09-21 | 1 | -4/+4 | |
| | |_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Change quote character to ' * Fix indentation * Load "ledger-mode" rather than "ldg-new" | |||||
* / | | | | | | | delete obsolete ledger.texi. Down with cruft! | Simon Michael | 2013-09-21 | 2 | -4109/+1 | |
|/ / / / / / / | ||||||
* | | | | | | | Guard against a possible null value | John Wiegley | 2013-09-20 | 1 | -1/+1 | |
| | | | | | | |