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:
Tom Willemse 2014-01-26 01:38:15 +01:00
parent edbf50b028
commit 8bcb1e2640

View file

@ -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))))