* lisp/saveplace.el (save-place-alist-to-file): Save list sorted and
pretty-printed, so that it is mergeable by line-based text merging, as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
This commit is contained in:
parent
2576c28f3a
commit
6e457cc94c
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-12-29 Karl Fogel <kfogel@red-bean.com>
|
||||
|
||||
* saveplace.el (save-place-alist-to-file): Save list sorted and
|
||||
pretty-printed, so that it is mergeable by line-based text merging,
|
||||
as suggested by Iain Dalton <iain.dalton {_AT_} gmail.com>.
|
||||
|
||||
2010-12-28 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* tool-bar.el (tool-bar-setup): Remove :enable conditions, which
|
||||
|
|
|
@ -213,7 +213,9 @@ may have changed\) back to `save-place-alist'."
|
|||
(symbol-name coding-system-for-write)))
|
||||
(let ((print-length nil)
|
||||
(print-level nil))
|
||||
(print save-place-alist (current-buffer)))
|
||||
(pp (sort save-place-alist
|
||||
(lambda (a b) (string< (car a) (car b))))
|
||||
(current-buffer)))
|
||||
(let ((version-control
|
||||
(cond
|
||||
((null save-place-version-control) nil)
|
||||
|
|
Loading…
Add table
Reference in a new issue