Skip to content

Commit 4b44969

Browse files
committed
Fix some documentation warnings in package-lint
1 parent fca3877 commit 4b44969

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

gnuplot-context.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,7 +1729,7 @@ name; otherwise continues tokenizing up to the token at point. FIXME."
17291729

17301730
;;;; Variables to be set via pattern matching
17311731
(defvar gnuplot-completions nil
1732-
"List of possible gnuplot-mode completions at point.
1732+
"List of possible `gnuplot-mode' completions at point.
17331733
This is filled in by `gnuplot-match-pattern' when it reaches the
17341734
token before point.")
17351735

@@ -1747,7 +1747,7 @@ for the topmost entry when it reaches the token at point.")
17471747
Set by `gnuplot-match-pattern'. See also `gnuplot-info-at-point'.")
17481748

17491749
(defvar gnuplot-captures nil
1750-
"Alist of named capture groups for gnuplot-mode completion code.
1750+
"Alist of named capture groups for `gnuplot-mode' completion code.
17511751
17521752
Each entry is of the form (NAME BEGIN END), where NAME is the
17531753
name specified in the (capture NAME PATTERN) form in the
@@ -1756,7 +1756,7 @@ list beginning the capture group, and END is the tail of the
17561756
token list just after the end of the capture group.")
17571757

17581758
(defvar gnuplot-eldoc-hash nil
1759-
"ElDoc strings for gnuplot-mode.
1759+
"ElDoc strings for `gnuplot-mode'.
17601760
17611761
These have to be compiled from the Gnuplot source tree using
17621762
`doc2texi.el'.")

gnuplot.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ So the configuration can be customised by the user."
179179
:type 'hook)
180180

181181
(defcustom gnuplot-comint-mode-hook nil
182-
"Hook run after setting up the gnuplot buffer in gnuplot-comint-mode.
182+
"Hook run after setting up the gnuplot buffer in `gnuplot-comint-mode'.
183183
By default this runs the hook named `gnuplot-comint-setup-hook',
184184
for backward compatibility."
185185
:group 'gnuplot-hooks
@@ -316,7 +316,7 @@ These are set by `gnuplot-set-keywords-list' from the values in
316316
"A boolean which gets toggled when the info file is probed.")
317317
(defcustom gnuplot-keywords-when 'deferred ;; 'immediately
318318
"This variable controls when the info file is parsed.
319-
The choices are immediately upon starting gnuplot-mode or the first
319+
The choices are immediately upon starting `gnuplot-mode' or the first
320320
time that data is needed."
321321
:group 'gnuplot
322322
:type
@@ -326,7 +326,7 @@ time that data is needed."
326326
(defcustom gnuplot-use-context-sensitive-completion t
327327
"Non-nil if `gnuplot-context-sensitive-mode' should be enabled by default.
328328
329-
In context-sensitive mode, gnuplot-mode parses the current
329+
In context-sensitive mode, `gnuplot-mode' parses the current
330330
command line to provide smarter completion and documentation
331331
suggestions."
332332
:group 'gnuplot
@@ -355,10 +355,10 @@ on."
355355
:type 'boolean)
356356

357357
(defcustom gnuplot-tab-completion nil
358-
"Non-nil if TAB should perform completion in gnuplot-mode buffers.
358+
"Non-nil if TAB should perform completion in `gnuplot-mode' buffers.
359359
360360
Setting this to non-nil sets the `tab-always-indent' variable to the
361-
symbol `complete' in gnuplot-mode buffers."
361+
symbol `complete' in `gnuplot-mode' buffers."
362362
:group 'gnuplot
363363
:type 'boolean)
364364

@@ -1080,7 +1080,7 @@ Ensures that the region being searched begins and ends outside of
10801080
any lines continued with a backslash.
10811081
10821082
This function is added to `syntax-propertize-extend-region-functions'
1083-
in gnuplot-mode buffers."
1083+
in `gnuplot-mode' buffers."
10841084
(let ((continuation-start
10851085
(min start
10861086
(gnuplot-point-at-beginning-of-continuation start)))
@@ -2060,7 +2060,7 @@ The info file should be installed by default with the Gnuplot
20602060
distribution, or is available at the `gnuplot-mode' web page:
20612061
https://github.com/emacsorphanage/gnuplot/
20622062
2063-
With the new context-sensitive mode active, gnuplot-mode can also
2063+
With the new context-sensitive mode active, `gnuplot-mode' can also
20642064
provide function/`eldoc-mode' syntax hints as you type. This requires a
20652065
separate file of strings, `gnuplot-eldoc.el', which is also
20662066
provided by recent Gnuplot distributions.

0 commit comments

Comments
 (0)