summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-01-27 23:47:22 +0100
committerGravatar Tom Willemse2014-01-27 23:47:22 +0100
commit06676fb533fb48526824da6ac2258fcad7bf26a6 (patch)
treeb5503764480432ada6eb938dbbe26a8e4ff2a01e
parent9482a594ccde4b31e24e09761f76f71308bb46a3 (diff)
downloadedocs-master.tar.gz
edocs-master.zip
Fix ascii exportHEADmaster
-rw-r--r--edocs.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/edocs.el b/edocs.el
index 6e11317..5b14268 100644
--- a/edocs.el
+++ b/edocs.el
@@ -227,7 +227,7 @@ parts of the module."
(defmethod edocs--export-format-text ((exporter edocs-ascii-exporter)
txt known-symbols)
"Perform formatting operations on TXT."
- txt)
+ (insert txt))
(defmethod edocs--export-insert-header ((exporter edocs-html-exporter)
level txt)
@@ -314,8 +314,7 @@ See the docstring for `edocs--module-name' for more information."
"Insert definition."
(insert "-- " (edocs--get-type-display type) ": "
name " " (or args "") "\n\n"
- (or (edocs--format-doc exporter doc known-symbols)
- "Not documented.") "\n\n"))
+ (edocs--format-doc exporter doc known-symbols) "\n\n"))
(defun edocs--format-symbol (exporter symbol known-symbols)
"Make EXPORTER format the information in SYMBOL.