File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,8 @@ Tables are marked to be ignored by line wrap."
297
297
(special (nrepl-dict-get info " special-form" ))
298
298
(forms (nrepl-dict-get info " forms-str" ))
299
299
(args (nrepl-dict-get info " arglists-str" ))
300
- (doc (nrepl-dict-get info " doc" ))
300
+ (doc (or (nrepl-dict-get info " doc" )
301
+ " Not documented." ))
301
302
(url (nrepl-dict-get info " url" ))
302
303
(class (nrepl-dict-get info " class" ))
303
304
(member (nrepl-dict-get info " member" ))
@@ -329,10 +330,9 @@ Tables are marked to be ignored by line wrap."
329
330
(emit (concat " Added in " added) 'font-lock-comment-face ))
330
331
(when depr
331
332
(emit (concat " Deprecated in " depr) 'font-lock-comment-face ))
332
- (when doc
333
- (if class
334
- (cider-docview-render-java-doc (current-buffer ) doc)
335
- (emit (concat " " doc))))
333
+ (if class
334
+ (cider-docview-render-java-doc (current-buffer ) doc)
335
+ (emit (concat " " doc)))
336
336
(when url
337
337
(newline )
338
338
(insert " Please see " )
You can’t perform that action at this time.
0 commit comments