diff options
author | John Paul Wallington <jpw@pobox.com> | 2002-12-09 23:46:12 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2002-12-09 23:46:12 +0000 |
commit | 4ba1612761c358928e641522c4f52cb91ffaaf48 (patch) | |
tree | 18c189dcc9088ba32f80e303299260a8a7d18584 /lisp/chistory.el | |
parent | d852822674aab5332e2d417fd8d8734e1fa59a92 (diff) | |
download | emacs-4ba1612761c358928e641522c4f52cb91ffaaf48.tar.gz |
* ibuffer.el (ibuffer-mode): If `show-paren-mode' is enabled,
disable it buffer-locally.
(ibuffer-mouse-popup-menu): Use `=' instead of `eq' to compare
`eventpt' and point.
* ibuf-ext.el (ibuffer-remove-duplicates): New function.
(ibuffer-set-filter-groups-by-mode): Use it instead of
`delete-duplicates' so we don't require cl library at runtime.
(ibuffer-insert-filter-group-before): Don't use `position' so we
don't require cl library at runtime.
* chistory.el (command-history-mode): Add interactive spec.
Improve doc string.
Diffstat (limited to 'lisp/chistory.el')
-rw-r--r-- | lisp/chistory.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/chistory.el b/lisp/chistory.el index 56fef3712e0..aae1d728ee7 100644 --- a/lisp/chistory.el +++ b/lisp/chistory.el @@ -126,7 +126,11 @@ The buffer is left in Command History mode." (command-history-mode))))) (defun command-history-mode () - "Major mode for listing and repeating recent commands." + "Major mode for listing and repeating recent commands. + +Keybindings: +\\{command-history-map}" + (interactive) (Command-history-setup) (setq major-mode 'command-history-mode) (setq mode-name "Command History") |