Skip to content

Commit d3bd7f4

Browse files
committed
Fixed warnings.
1 parent a0c18c5 commit d3bd7f4

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

docstr-faces.el

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

2525
;;; Code:
2626

27+
(declare-function docstr-major-modes "ext:docstr.el")
28+
2729
(defface docstr-faces-tag-face
2830
'((t (:foreground "SlateGray")))
2931
"Highlighting for Docstring tag."

docstr-writers.el

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929

3030
(require 'docstr-util)
3131

32+
(declare-function docstr-form-param "ext:docstr.el")
33+
(declare-function docstr-form-return "ext:docstr.el")
34+
35+
(defvar docstr-default-typename)
36+
(defvar docstr-desc-param)
37+
(defvar docstr-desc-return)
38+
3239
;;
3340
;; (@* "Others" )
3441
;;

docstr.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
(format "@param %s %s %s" docstr-key-type docstr-key-var docstr-key-desc)
7070
"Format string for parameter document string."
7171
:type 'string
72-
:group 'docstr)
72+
:group 'docstr)
7373

7474
(defcustom docstr-format-return
7575
(format "@return %s %s %s" docstr-key-type docstr-key-var docstr-key-desc)

0 commit comments

Comments
 (0)