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
e19fff38
Commit
e19fff38
authored
Dec 04, 2008
by
Juanma Barranquero
Browse files
* ibuffer.el (ibuffer-sort-bufferlist): Require ibuf-ext
if the sorting functions are not loaded. (Bug#1432)
parent
b0a1b6f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-1
lisp/ibuffer.el
lisp/ibuffer.el
+3
-0
No files found.
lisp/ChangeLog
View file @
e19fff38
2008-12-04 Juanma Barranquero <lekktu@gmail.com>
* ibuffer.el (ibuffer-sort-bufferlist): Require ibuf-ext
if the sorting functions are not loaded. (Bug#1432)
2008-12-04 Sam Steingold <sds@gnu.org>
* progmodes/compile.el (compilation-read-command): Extracted from
...
...
@@ -11817,7 +11822,6 @@
systems without 12 months per year.
(calendar-date-is-visible-p): Doc fix. Simplify.
* calendar/holidays.el (holiday-filter-visible-calendar): Return result
from dolist.
...
...
lisp/ibuffer.el
View file @
e19fff38
...
...
@@ -2191,6 +2191,9 @@ If optional arg SILENT is non-nil, do not display progress messages."
ibuffer-header-line-format
)))
(
defun
ibuffer-sort-bufferlist
(
bmarklist
)
(
unless
ibuffer-sorting-functions-alist
;; make sure the sorting functions are loaded
(
require
'ibuf-ext
))
(
let*
((
sortdat
(
assq
ibuffer-sorting-mode
ibuffer-sorting-functions-alist
))
(
func
(
caddr
sortdat
)))
...
...
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