diff options
| author | Dan Nicolaescu | 2006-04-02 23:48:28 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2006-04-02 23:48:28 +0000 |
| commit | b641fbd7f4cd1069ec2e709dea275d7698525d4d (patch) | |
| tree | fcd5c41e894898b929d0522a9e319e5a6c293da1 | |
| parent | 4d4eb732b5bb970e21e01110b87db7a6464c60c1 (diff) | |
| download | emacs-b641fbd7f4cd1069ec2e709dea275d7698525d4d.tar.gz emacs-b641fbd7f4cd1069ec2e709dea275d7698525d4d.zip | |
(define-ibuffer-column): Document the new parameter.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ibuf-macs.el | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 998c2eb9427..2f7e50357b4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * ibuf-macs.el (define-ibuffer-column): Document the new parameter. | ||
| 4 | |||
| 1 | 2006-04-02 Richard Stallman <rms@gnu.org> | 5 | 2006-04-02 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * progmodes/compile.el (compilation-message-face): Make it defcustom. | 7 | * progmodes/compile.el (compilation-message-face): Make it defcustom. |
diff --git a/lisp/ibuf-macs.el b/lisp/ibuf-macs.el index 603ffc45c93..009935e1539 100644 --- a/lisp/ibuf-macs.el +++ b/lisp/ibuf-macs.el | |||
| @@ -90,6 +90,9 @@ the text, such as `mouse-face'. And SUMMARIZER, if given, is a | |||
| 90 | function which will be passed a list of all the strings in its column; | 90 | function which will be passed a list of all the strings in its column; |
| 91 | it should return a string to display at the bottom. | 91 | it should return a string to display at the bottom. |
| 92 | 92 | ||
| 93 | If HEADER-MOUSE-MAP is given, it will be used as a keymap for the | ||
| 94 | title of the column. | ||
| 95 | |||
| 93 | Note that this macro expands into a `defun' for a function named | 96 | Note that this macro expands into a `defun' for a function named |
| 94 | ibuffer-make-column-NAME. If INLINE is non-nil, then the form will be | 97 | ibuffer-make-column-NAME. If INLINE is non-nil, then the form will be |
| 95 | inlined into the compiled format versions. This means that if you | 98 | inlined into the compiled format versions. This means that if you |