Skip to content

Commit

Permalink
Ensure main
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Feb 4, 2021
1 parent 02d81db commit dc642c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions langs/docstr-csharp.el
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@

(require 'docstr)

(declare-function docstr-writers-java "ext:docstr-java.el")

(defcustom docstr-csharp-style nil
"Style specification for document string in C#."
:type '(choice (const :tag "No specify" nil))
Expand Down Expand Up @@ -64,6 +62,7 @@
(docstr-format-param (format "<param name=\"%s\"></param>" docstr-key-var))
(docstr-format-return "<returns></returns>")
(docstr-concat-var nil))
(forward-line 1) (end-of-line)
(docstr-writers--insert-param param-types param-vars prefix)
(docstr-writers--insert-return return-type-str '("void") prefix)))
(docstr-writers-after start t t t)))
Expand Down
2 changes: 2 additions & 0 deletions langs/docstr-ruby.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

;;; Code:

(require 'docstr)

(defcustom docstr-ruby-style 'rdoc
"Style specification for document string in Ruby."
:type '(choice (const :tag "No specify" nil)
Expand Down
2 changes: 2 additions & 0 deletions langs/docstr-swift.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

;;; Code:

(require 'docstr)

(defcustom docstr-swift-style 'swift-doc
"Style specification for document string in Swift."
:type '(choice (const :tag "No specify" nil)
Expand Down

0 comments on commit dc642c7

Please sign in to comment.