Skip to content

Commit dc642c7

Browse files
committed
Ensure main
1 parent 02d81db commit dc642c7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

langs/docstr-csharp.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626

2727
(require 'docstr)
2828

29-
(declare-function docstr-writers-java "ext:docstr-java.el")
30-
3129
(defcustom docstr-csharp-style nil
3230
"Style specification for document string in C#."
3331
:type '(choice (const :tag "No specify" nil))
@@ -64,6 +62,7 @@
6462
(docstr-format-param (format "<param name=\"%s\"></param>" docstr-key-var))
6563
(docstr-format-return "<returns></returns>")
6664
(docstr-concat-var nil))
65+
(forward-line 1) (end-of-line)
6766
(docstr-writers--insert-param param-types param-vars prefix)
6867
(docstr-writers--insert-return return-type-str '("void") prefix)))
6968
(docstr-writers-after start t t t)))

langs/docstr-ruby.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
;;; Code:
2626

27+
(require 'docstr)
28+
2729
(defcustom docstr-ruby-style 'rdoc
2830
"Style specification for document string in Ruby."
2931
:type '(choice (const :tag "No specify" nil)

langs/docstr-swift.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
;;; Code:
2626

27+
(require 'docstr)
28+
2729
(defcustom docstr-swift-style 'swift-doc
2830
"Style specification for document string in Swift."
2931
:type '(choice (const :tag "No specify" nil)

0 commit comments

Comments
 (0)