Don't include undocumented items
They were already not printed, but they were still indexed. Not indexing them keeps them from being linked to in other parts of the documentation.
This commit is contained in:
parent
edbf50b028
commit
8bcb1e2640
1 changed files with 5 additions and 4 deletions
9
edocs.el
9
edocs.el
|
@ -132,11 +132,12 @@ etc."
|
|||
defclass defgeneric defconst
|
||||
define-minor-mode defface))
|
||||
(let ((type (symbol-name (car expr)))
|
||||
(name (symbol-name (cadr expr))))
|
||||
(unless (string-match edocs-private-regexp name)
|
||||
(name (symbol-name (cadr expr)))
|
||||
(docs (edocs--get-doc expr)))
|
||||
(unless (or (string-match edocs-private-regexp name)
|
||||
(not docs))
|
||||
(push (make-edocs-symbol
|
||||
:name name :type type
|
||||
:doc (edocs--get-doc expr)
|
||||
:name name :type type :doc docs
|
||||
:args (edocs--get-arg-list expr)) ls))))))
|
||||
(end-of-file nil))
|
||||
(reverse ls))))
|
||||
|
|
Loading…
Reference in a new issue