branch: externals/taxy
commit b37dd39fc779bf520b5a5840151505a7dd73d2c8
Author: Adam Porter <[email protected]>
Commit: Adam Porter <[email protected]>
WIP: Tidy
---
examples/elispy.el | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/examples/elispy.el b/examples/elispy.el
index f2e74c0..5dcd527 100644
--- a/examples/elispy.el
+++ b/examples/elispy.el
@@ -20,14 +20,16 @@
;;; Commentary:
-;;
+;; This library provides commands that show top-level forms and
+;; definitions found in an Emacs Lisp project or buffer, organized by
+;; file and type.
;;; Code:
(require 'taxy-magit-section)
(defgroup elispy nil
- "Show an overview of symbols defined in an Emacs Lisp project."
+ "Show an overview of definitions in an Emacs Lisp project or buffer."
:group 'emacs-lisp-mode)
;;;; Keys
@@ -172,10 +174,9 @@ buffer."
(taxy-sort #'string< #'form-name)))
(taxy-magit-section-insert-indent-items nil)
(inhibit-read-only t)
- format-cons)
- (setf format-cons (taxy-magit-section-format-items
- elispy-columns elispy-column-formatters taxy)
- format-table (car format-cons)
+ (format-cons (taxy-magit-section-format-items
+ elispy-columns elispy-column-formatters taxy)))
+ (setf format-table (car format-cons)
column-sizes (cdr format-cons)
header-line-format (taxy-magit-section-format-header
column-sizes elispy-column-formatters))