1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* ibuffer.el (ibuffer-sort-bufferlist): Require ibuf-ext

if the sorting functions are not loaded.  (Bug#1432)
This commit is contained in:
Juanma Barranquero 2008-12-04 23:58:14 +00:00
parent b0a1b6f349
commit e19fff38ea
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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)))