+2012-02-10 Glenn Morris <rgm@gnu.org>
+
+ * modes.texi (Basic Major Modes): Mention tabulated-list-mode.
+
2012-02-08 Glenn Morris <rgm@gnu.org>
* loading.texi (Named Features): Update the require example.
Buffers,,Listing Existing Buffers, emacs, The GNU Emacs Manual}.
@end deffn
+@cindex tables of data
+@deffn Command tabulated-list-mode
+Tabulated List mode is another mode that derives from Special mode. It
+displays tabulated data, i.e. a series of rows and columns, where each
+row represents a particular entry, whose properties are displayed in the
+various columns. It provides a general mechanism for sorting on
+columns. You can use Tabulated List mode as the basis for other modes
+that need to display lists. For example, the @samp{*Packages*} buffer
+uses this (@pxref{Packages,,, emacs, The GNU Emacs Manual}). The
+documentation of the @code{tabulated-list-mode} function explains what
+you need to do to use it. At a minimum, specify the column format via
+the @code{tabulated-list-format} variable.
+@end deffn
+
@node Generic Modes
@subsection Generic Modes
@cindex generic mode
** New global minor mode electric-layout-mode.
When enabled, typing certain characters automatically inserts newlines.
++++
** tabulated-list.el provides a generic major mode for tabulated data,
from which other modes can be derived.