Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1c4a85ed
Commit
1c4a85ed
authored
Mar 13, 2013
by
Karl Fogel
Browse files
* saveplace.el (save-place-alist-to-file): Don't sort
`save-place-alist', just pretty-print it (bug#13882).
parent
47d7532e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/saveplace.el
lisp/saveplace.el
+1
-3
No files found.
lisp/ChangeLog
View file @
1c4a85ed
2013-03-13 Karl Fogel <kfogel@red-bean.com>
* saveplace.el (save-place-alist-to-file): Don't sort
`save-place-alist', just pretty-print it (bug#13882).
2013-03-13 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
...
...
lisp/saveplace.el
View file @
1c4a85ed
...
...
@@ -224,9 +224,7 @@ may have changed\) back to `save-place-alist'."
(
symbol-name
coding-system-for-write
)))
(
let
((
print-length
nil
)
(
print-level
nil
))
(
pp
(
sort
save-place-alist
(
lambda
(
a
b
)
(
string<
(
car
a
)
(
car
b
))))
(
current-buffer
)))
(
pp
save-place-alist
(
current-buffer
)))
(
let
((
version-control
(
cond
((
null
save-place-version-control
)
nil
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment