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
fd4489f0
Commit
fd4489f0
authored
Nov 08, 2009
by
Chong Yidong
Browse files
* bookmark.el (bookmark-completing-read): Sort bookmark names if
bookmark-sort-flag is non-nil (Bug#4653).
parent
9bf7dc8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/bookmark.el
lisp/bookmark.el
+5
-1
No files found.
lisp/ChangeLog
View file @
fd4489f0
2009-11-08 Markus Rost <rost@math.uni-bielefeld.de>
* bookmark.el (bookmark-completing-read): Sort bookmark names if
bookmark-sort-flag is non-nil (Bug#4653).
2009-11-08 Chong Yidong <cyd@stupidchicken.com>
* cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
...
...
lisp/bookmark.el
View file @
fd4489f0
...
...
@@ -459,7 +459,11 @@ Optional second arg DEFAULT is a string to return if the user enters
the empty string."
(
bookmark-maybe-load-default-file
)
; paranoia
(
if
(
listp
last-nonmenu-event
)
(
bookmark-menu-popup-paned-menu
t
prompt
(
bookmark-all-names
))
(
bookmark-menu-popup-paned-menu
t
prompt
(
if
bookmark-sort-flag
(
sort
(
bookmark-all-names
)
'string-lessp
)
(
bookmark-all-names
)))
(
let*
((
completion-ignore-case
bookmark-completion-ignore-case
)
(
default
default
)
(
prompt
(
concat
prompt
(
if
default
...
...
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