Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make empty magit-log-remove-graph-args never remove --graph
This fix treats an empty list (or nil) `magit-log-remove-graph-args' as "never-match" so to never remove `--graph' in log commands. Before this fix: ;; Never remove `--graph'. Ugly. (setq magit-log-remove-graph-args (list "something that will never match")) ;; Remove `--graph' everywhere. Confusing nil->"true". (setq magit-log-remove-graph-args nil) Now: ;; Never remove `--graph'. (setq magit-log-remove-graph-args nil) ;; Remove `--graph' everywhere. Empty string regex matches everything. (setq magit-log-remove-graph-args (list ""))
- Loading branch information