diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-14 02:37:44 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-14 02:37:44 +0200 |
commit | 8969836cb8e36df9dcd3f5031b2dcc648c4c90dc (patch) | |
tree | 5c13c1b204dbba8f7227b5500c25cc7d7ca2a455 /lisp/emacs-lisp | |
parent | 5a9e4f2230e76d53499cdd574a2cca61c9c3a1d0 (diff) | |
download | emacs-8969836cb8e36df9dcd3f5031b2dcc648c4c90dc.tar.gz emacs-8969836cb8e36df9dcd3f5031b2dcc648c4c90dc.tar.bz2 emacs-8969836cb8e36df9dcd3f5031b2dcc648c4c90dc.zip |
Edit some vtable doc strings
* lisp/emacs-lisp/vtable.el (make-vtable, vtable): Improve doc
strings.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/vtable.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/vtable.el b/lisp/emacs-lisp/vtable.el index 943ede159a1..2c6c90ee1f5 100644 --- a/lisp/emacs-lisp/vtable.el +++ b/lisp/emacs-lisp/vtable.el @@ -68,7 +68,7 @@ (row-colors :initarg :row-colors :accessor vtable-row-colors) (-cached-colors :initform nil :accessor vtable--cached-colors) (-cache :initform (make-hash-table :test #'equal))) - "A object to hold the data for a table.") + "An object to hold the data for a table.") (defvar-keymap vtable-map "S" #'vtable-sort-by-current-column @@ -100,7 +100,9 @@ column-colors) "Create and insert a vtable at point. The vtable object is returned. If INSERT is nil, the table won't -be inserted." +be inserted. + +See info node `(vtable)Top' for vtable documentation." (when objects-function (setq objects (funcall objects-function))) ;; Auto-generate the columns. |